@@ -1,6 +1,6 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare(strict_types=1); |
|
| 3 | +declare(strict_types = 1); |
|
| 4 | 4 | |
| 5 | 5 | /** |
| 6 | 6 | * Balloon |
@@ -272,9 +272,9 @@ |
||
| 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 | |
@@ -1,6 +1,6 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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; |
@@ -1,6 +1,6 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare(strict_types=1); |
|
| 3 | +declare(strict_types = 1); |
|
| 4 | 4 | |
| 5 | 5 | /** |
| 6 | 6 | * Balloon |