Passed
Pull Request — master (#72)
by Sergei
16:51 queued 03:33
created
rector.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,7 +7,7 @@
 block discarded – undo
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',
Please login to merge, or discard this patch.
src/Mutex.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
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
             }
Please login to merge, or discard this patch.
src/Synchronizer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
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;
Please login to merge, or discard this patch.