Test Setup Failed
Push — master ( 7fd591...c05875 )
by Vitaliy
02:29
created
src/EloquentQuery.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
         /** @var Builder $readyQuery */
27 27
         $readyQuery = null;
28 28
         $operation = new CustomOperation(
29
-            function (Builder $query) use (&$readyQuery) {
29
+            function(Builder $query) use (&$readyQuery) {
30 30
                 $readyQuery = $query;
31 31
                 throw new ManualInterruptProcessingException;
32 32
             },
@@ -53,13 +53,13 @@  discard block
 block discarded – undo
53 53
     {
54 54
         $this->addOperations(
55 55
             [
56
-                new CustomOperation(function (Builder $query) {
56
+                new CustomOperation(function(Builder $query) {
57 57
                     return $query->get();
58 58
                 }, Priority::HYDRATE - 1),
59 59
 
60 60
                 // Clone query to avoid applying same query modifications multiple times
61 61
                 // when executing ->get() / ->getSql() multiple times.
62
-                new CustomOperation(function (Builder $query) {
62
+                new CustomOperation(function(Builder $query) {
63 63
                     return clone($query);
64 64
                 }, Priority::PREPARE - 1),
65 65
             ]
Please login to merge, or discard this patch.
src/DoctrineQuery.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
         /** @var QueryBuilder $readyQuery */
29 29
         $readyQuery = null;
30 30
         $operation = new CustomOperation(
31
-            function (QueryBuilder $query) use (&$readyQuery) {
31
+            function(QueryBuilder $query) use (&$readyQuery) {
32 32
                 $readyQuery = $query;
33 33
                 throw new ManualInterruptProcessingException;
34 34
             },
@@ -59,13 +59,13 @@  discard block
 block discarded – undo
59 59
     {
60 60
         $this->addOperations(
61 61
             [
62
-                new CustomOperation(function (QueryBuilder $query) {
62
+                new CustomOperation(function(QueryBuilder $query) {
63 63
                     return $query->execute()->fetchAll(PDO::FETCH_OBJ);
64 64
                 }, Priority::HYDRATE - 1),
65 65
 
66 66
                 // Clone query to avoid applying same query modifications multiple times
67 67
                 // when executing ->get() / ->getSql() multiple times.
68
-                new CustomOperation(function (QueryBuilder $query) {
68
+                new CustomOperation(function(QueryBuilder $query) {
69 69
                     return clone($query);
70 70
                 }, Priority::PREPARE - 1),
71 71
             ]
Please login to merge, or discard this patch.