@@ -19,7 +19,7 @@ |
||
| 19 | 19 | */ |
| 20 | 20 | public function __construct(iterable $items, EntityManagerInterface $em, int $chunkSize = 100) |
| 21 | 21 | { |
| 22 | - if (!\is_countable($items)) { |
|
| 22 | + if ( ! \is_countable($items)) { |
|
| 23 | 23 | throw new \InvalidArgumentException('$items must be countable.'); |
| 24 | 24 | } |
| 25 | 25 | |
@@ -34,7 +34,7 @@ |
||
| 34 | 34 | */ |
| 35 | 35 | private static function normalizeResult($result) |
| 36 | 36 | { |
| 37 | - if (!\is_array($result)) { |
|
| 37 | + if ( ! \is_array($result)) { |
|
| 38 | 38 | return $result; |
| 39 | 39 | } |
| 40 | 40 | |