Skip to content

Commit 7040a6d

Browse files
Merge branch '3.4' into 4.0
* 3.4: (22 commits) fix merge [Translation] Fix InvalidArgumentException when using untranslated plural forms from .po files Fixed exit code with non-integer throwable code [HttpFoundation] Support 0 bit netmask in IPv6 () [DI] Impossible to set an environment variable and then an array as container parameter [Process] remove false-positive BC breaking exception on Windows Tweaking class not found autowiring error [LDAP] added missing dots at the end of some exception messages. [TwigBridge] Add missing dev requirement for workflow fixed #25440 empty lines don't count for indent detection Set `width: auto` on WebProfiler toolbar's reset. [Lock] Fix incorrect phpdoc [Process] Dont rely on putenv(), it fails on ZTS PHP [HttpKernel] detect deprecations thrown by container initialization during tests [HttpKernel] Fix logging of post-terminate errors/exceptions [DI] Add context to service-not-found exceptions thrown by service locators [Debug] Fix catching fatal errors in case of nested error handlers [VarDumper] Fixed file links leave blank pages when ide is configured Fix hidden currency element with Bootstrap 3 theme ...
2 parents 0895c03 + 3f146e0 commit 7040a6d

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

StoreInterface.php

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@ interface StoreInterface
2424
/**
2525
* Stores the resource if it's not locked by someone else.
2626
*
27-
* @param Key $key key to lock
28-
*
2927
* @throws LockConflictedException
3028
*/
3129
public function save(Key $key);
@@ -35,8 +33,6 @@ public function save(Key $key);
3533
*
3634
* If the store does not support this feature it should throw a NotSupportedException.
3735
*
38-
* @param Key $key key to lock
39-
*
4036
* @throws LockConflictedException
4137
* @throws NotSupportedException
4238
*/
@@ -47,7 +43,6 @@ public function waitAndSave(Key $key);
4743
*
4844
* If the store does not support this feature it should throw a NotSupportedException.
4945
*
50-
* @param Key $key key to lock
5146
* @param float $ttl amount of second to keep the lock in the store
5247
*
5348
* @throws LockConflictedException
@@ -57,16 +52,12 @@ public function putOffExpiration(Key $key, $ttl);
5752

5853
/**
5954
* Removes a resource from the storage.
60-
*
61-
* @param Key $key key to remove
6255
*/
6356
public function delete(Key $key);
6457

6558
/**
6659
* Returns whether or not the resource exists in the storage.
6760
*
68-
* @param Key $key key to remove
69-
*
7061
* @return bool
7162
*/
7263
public function exists(Key $key);

0 commit comments

Comments
 (0)