Passed
Push — master ( 865dea...7ad56b )
by Kevin
02:08
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.
src/Doctrine/Repository/DBALObjectRepository.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
             ->fetch()
37 37
         ;
38 38
 
39
-        if (!$result) {
39
+        if ( ! $result) {
40 40
             throw new NotFound(\sprintf('Object from "%s" table not found for given specification.', static::tableName()));
41 41
         }
42 42
 
Please login to merge, or discard this patch.