Completed
Push — master ( f5ebc8...71a9a0 )
by Raffael
01:47
created
src/Async.php 2 patches
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -272,9 +272,9 @@
 block discarded – undo
272 272
             '$or' => [
273 273
                 ['status' => self::STATUS_WAITING],
274 274
                 ['status' => self::STATUS_POSTPONED,
275
-                 'node' => $this->node_name, ],
275
+                    'node' => $this->node_name, ],
276 276
                 ['status' => self::STATUS_POSTPONED,
277
-                 'at' => ['$gte' => new UTCDateTime()], ],
277
+                    'at' => ['$gte' => new UTCDateTime()], ],
278 278
             ],
279 279
         ], $options);
280 280
 
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 /**
6 6
  * TaskScheduler
@@ -105,7 +105,7 @@  discard block
 block discarded – undo
105 105
      *
106 106
      * @return Async
107 107
      */
108
-    public function setOptions(? Iterable $config = null): self
108
+    public function setOptions(? Iterable $config = null) : self
109 109
     {
110 110
         if (null === $config) {
111 111
             return $this;
Please login to merge, or discard this patch.
src/Exception.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 /**
6 6
  * TaskScheduler
Please login to merge, or discard this patch.
src/JobInterface.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 /**
6 6
  * TaskScheduler
Please login to merge, or discard this patch.
src/AbstractJob.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 /**
6 6
  * TaskScheduler
Please login to merge, or discard this patch.