Passed
Push — master ( 7ad56b...6137ca )
by Kevin
03:11
created
src/Doctrine/Batch/ORMCountableBatchProcessor.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/Doctrine/Batch/ORMIterableResultDecorator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.