Skip to content

Commit 4fdd691

Browse files
committed
fixed CS
1 parent c91ae72 commit 4fdd691

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Key.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ public function resetLifetime()
7878
}
7979

8080
/**
81-
* @param float $ttl The expiration delay of locks in seconds.
81+
* @param float $ttl the expiration delay of locks in seconds
8282
*/
8383
public function reduceLifetime($ttl)
8484
{

LockInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ interface LockInterface
2828
*
2929
* @param bool $blocking Whether or not the Lock should wait for the release of someone else
3030
*
31-
* @return bool Whether or not the lock had been acquired.
31+
* @return bool whether or not the lock had been acquired
3232
*
3333
* @throws LockConflictedException If the lock is acquired by someone else in blocking mode
3434
* @throws LockAcquiringException If the lock can not be acquired

Store/SemaphoreStore.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class SemaphoreStore implements StoreInterface
2727
/**
2828
* Returns whether or not the store is supported.
2929
*
30-
* @param bool|null $blocking When not null, checked again the blocking mode.
30+
* @param bool|null $blocking when not null, checked again the blocking mode
3131
*
3232
* @return bool
3333
*

0 commit comments

Comments
 (0)