Skip to content

Commit 57d761b

Browse files
committed
code style changes; update dependencies
1 parent 95ee90e commit 57d761b

File tree

3 files changed

+116
-52
lines changed

3 files changed

+116
-52
lines changed

composer.lock

+114-50
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/FilesystemMutex.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
*/
3131
final class FilesystemMutex implements Mutex
3232
{
33-
const LATENCY_TIMEOUT = 50;
33+
private const LATENCY_TIMEOUT = 50;
3434

3535
/**
3636
* Mutex identifier.

src/InMemoryMutex.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
*/
2727
final class InMemoryMutex implements Mutex
2828
{
29-
const LATENCY_TIMEOUT = 10;
29+
private const LATENCY_TIMEOUT = 10;
3030

3131
/**
3232
* @var string

0 commit comments

Comments
 (0)