@@ -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