Passed
Branch master (3adcff)
by Raffael
05:22
created
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
  * Balloon
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
  * Balloon
Please login to merge, or discard this patch.
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   +3 added lines, -3 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
  * Balloon
@@ -83,7 +83,7 @@  discard block
 block discarded – undo
83 83
      * @param ContainerInterface $container
84 84
      * @param iterable           $config
85 85
      */
86
-    public function __construct(Database $db, LoggerInterface $logger, ?ContainerInterface $container=null, ?Iterable $config = null)
86
+    public function __construct(Database $db, LoggerInterface $logger, ?ContainerInterface $container = null, ?Iterable $config = null)
87 87
     {
88 88
         $this->db = $db;
89 89
         $this->logger = $logger;
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
      *
100 100
      * @return Async
101 101
      */
102
-    public function setOptions(? Iterable $config = null): self
102
+    public function setOptions(? Iterable $config = null) : self
103 103
     {
104 104
         if (null === $config) {
105 105
             return $this;
Please login to merge, or discard this patch.