@@ -7,7 +7,7 @@ |
||
7 | 7 | use Rector\Php74\Rector\Closure\ClosureToArrowFunctionRector; |
8 | 8 | use Rector\Set\ValueObject\LevelSetList; |
9 | 9 | |
10 | -return static function (RectorConfig $rectorConfig): void { |
|
10 | +return static function(RectorConfig $rectorConfig): void { |
|
11 | 11 | $rectorConfig->paths([ |
12 | 12 | __DIR__ . '/src', |
13 | 13 | __DIR__ . '/tests', |
@@ -38,7 +38,7 @@ |
||
38 | 38 | |
39 | 39 | final public function acquire(int $timeout = 0): bool |
40 | 40 | { |
41 | - return $this->retryAcquire($timeout, function () use ($timeout): bool { |
|
41 | + return $this->retryAcquire($timeout, function() use ($timeout): bool { |
|
42 | 42 | if (!$this->isCurrentProcessLocked() && $this->acquireLock($timeout)) { |
43 | 43 | return self::$currentProcessLocks[$this->lockName] = true; |
44 | 44 | } |
@@ -49,7 +49,7 @@ |
||
49 | 49 | { |
50 | 50 | $mutex = $this->mutexFactory->createAndAcquire($name, $timeout); |
51 | 51 | |
52 | - set_error_handler(static function (int $severity, string $message, string $file, int $line): bool { |
|
52 | + set_error_handler(static function(int $severity, string $message, string $file, int $line): bool { |
|
53 | 53 | if (!(error_reporting() & $severity)) { |
54 | 54 | // This error code is not included in error_reporting. |
55 | 55 | return true; |