Passed
Push — master ( 6028dd...89a59a )
by Vitaliy
02:15
created
src/DoctrineQuery.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
      */
37 37
     protected function getCountInternal()
38 38
     {
39
-        return (int)$this
39
+        return (int) $this
40 40
             ->getDoctrineQuery()
41 41
             ->select('count(*) as row_count')
42 42
             ->execute()
Please login to merge, or discard this patch.
src/AbstractDatabaseQuery.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
 
44 44
         $readyQuery = null;
45 45
         $operation = new CustomOperation(
46
-            function ($query) use (&$readyQuery) {
46
+            function($query) use (&$readyQuery) {
47 47
                 $readyQuery = $query;
48 48
                 throw new ManualInterruptProcessingException;
49 49
             },
Please login to merge, or discard this patch.