Completed
Pull Request — master (#67)
by Eric
41:17
created
src/Bundle/ResourceBundle/Behat/Context/AbstractResourceContext.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@
 block discarded – undo
53 53
      */
54 54
     private function getResource($resource, array &$criteria)
55 55
     {
56
-        array_walk_recursive($criteria, function (&$value) {
56
+        array_walk_recursive($criteria, function(&$value) {
57 57
             if ($value === 'yes') {
58 58
                 $value = true;
59 59
             } elseif ($value === 'no') {
Please login to merge, or discard this patch.
src/Bundle/ResourceBundle/Controller/Controller.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -243,7 +243,7 @@
 block discarded – undo
243 243
             $data = $bag->get($form->getName(), []);
244 244
         }
245 245
 
246
-        array_walk_recursive($data, function (&$value) {
246
+        array_walk_recursive($data, function(&$value) {
247 247
             if ($value === false) {
248 248
                 $value = 'false';
249 249
             }
Please login to merge, or discard this patch.
Tests/Rest/Action/EventSubscriber/ApiActionSubscriberTest.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
         $event
94 94
             ->expects($this->once())
95 95
             ->method('setView')
96
-            ->with($this->callback(function (View $view) {
96
+            ->with($this->callback(function(View $view) {
97 97
                 return $view->getStatusCode() === null && $view->getData() === null;
98 98
             }));
99 99
 
@@ -121,7 +121,7 @@  discard block
 block discarded – undo
121 121
         $event
122 122
             ->expects($this->once())
123 123
             ->method('setView')
124
-            ->with($this->callback(function (View $view) use ($form) {
124
+            ->with($this->callback(function(View $view) use ($form) {
125 125
                 return $view->getStatusCode() === Response::HTTP_BAD_REQUEST && $view->getData() === $form;
126 126
             }));
127 127
 
@@ -154,7 +154,7 @@  discard block
 block discarded – undo
154 154
         $event
155 155
             ->expects($this->once())
156 156
             ->method('setView')
157
-            ->with($this->callback(function (View $view) use ($statusCode) {
157
+            ->with($this->callback(function(View $view) use ($statusCode) {
158 158
                 return $view->getStatusCode() === $statusCode && $view->getData() === null;
159 159
             }));
160 160
 
@@ -209,7 +209,7 @@  discard block
 block discarded – undo
209 209
         $event
210 210
             ->expects($this->once())
211 211
             ->method('setView')
212
-            ->with($this->callback(function (View $view) use ($statusCode, $data, $url) {
212
+            ->with($this->callback(function(View $view) use ($statusCode, $data, $url) {
213 213
                 $headers = $view->getHeaders();
214 214
 
215 215
                 return $view->getStatusCode() === $statusCode
@@ -252,7 +252,7 @@  discard block
 block discarded – undo
252 252
         $event
253 253
             ->expects($this->once())
254 254
             ->method('setView')
255
-            ->with($this->callback(function (View $view) use ($statusCode, $data) {
255
+            ->with($this->callback(function(View $view) use ($statusCode, $data) {
256 256
                 return $view->getStatusCode() === $statusCode && $view->getData() === $data;
257 257
             }));
258 258
 
Please login to merge, or discard this patch.
Tests/Rest/Action/EventSubscriber/ViewActionSubscriberTest.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
         $event
91 91
             ->expects($this->once())
92 92
             ->method('setView')
93
-            ->with($this->callback(function (View $view) use ($form) {
93
+            ->with($this->callback(function(View $view) use ($form) {
94 94
                 return $view->getData() === $form && $view->getStatusCode() === null;
95 95
             }));
96 96
 
@@ -139,7 +139,7 @@  discard block
 block discarded – undo
139 139
         $event
140 140
             ->expects($this->once())
141 141
             ->method('setView')
142
-            ->with($this->callback(function (View $view) use ($route, $routeParameters) {
142
+            ->with($this->callback(function(View $view) use ($route, $routeParameters) {
143 143
                 return $view->getStatusCode() === Response::HTTP_FOUND
144 144
                     && $view->getRoute() === $route
145 145
                     && $view->getRouteParameters() === $routeParameters;
@@ -169,7 +169,7 @@  discard block
 block discarded – undo
169 169
         $event
170 170
             ->expects($this->once())
171 171
             ->method('setView')
172
-            ->with($this->callback(function (View $view) use ($route) {
172
+            ->with($this->callback(function(View $view) use ($route) {
173 173
                 return $view->getRoute() === $route && $view->getRouteParameters() === [];
174 174
             }));
175 175
 
Please login to merge, or discard this patch.
Tests/Rest/View/EventSubscriber/PagerfantaViewSubscriberTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -200,7 +200,7 @@
 block discarded – undo
200 200
             ->method('createRepresentation')
201 201
             ->with(
202 202
                 $this->identicalTo($pagerfanta),
203
-                $this->callback(function ($config) use ($route, $routeParameters, $queryParameters) {
203
+                $this->callback(function($config) use ($route, $routeParameters, $queryParameters) {
204 204
                     return $config instanceof Route
205 205
                         && $config->getName() === $route
206 206
                         && $config->getParameters() === array_merge($routeParameters, $queryParameters);
Please login to merge, or discard this patch.
Tests/DependencyInjection/Compiler/RegisterManagerPassTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@
 block discarded – undo
63 63
             ->method('addMethodCall')
64 64
             ->with(
65 65
                 $this->identicalTo('offsetSet'),
66
-                $this->callback(function (array $args) use ($manager, $resource) {
66
+                $this->callback(function(array $args) use ($manager, $resource) {
67 67
                     return isset($args[0])
68 68
                         && isset($args[1])
69 69
                         && $args[0] === $resource
Please login to merge, or discard this patch.
Tests/DependencyInjection/Compiler/RegisterDomainManagerPassTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@
 block discarded – undo
63 63
             ->method('addMethodCall')
64 64
             ->with(
65 65
                 $this->identicalTo('offsetSet'),
66
-                $this->callback(function (array $args) use ($domainManager, $resource) {
66
+                $this->callback(function(array $args) use ($domainManager, $resource) {
67 67
                     return isset($args[0])
68 68
                         && isset($args[1])
69 69
                         && $args[0] === $resource
Please login to merge, or discard this patch.
Tests/DependencyInjection/Compiler/RegisterResourcePassTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@
 block discarded – undo
72 72
             ->method('addMethodCall')
73 73
             ->with(
74 74
                 $this->identicalTo('offsetSet'),
75
-                $this->callback(function (array $args) use ($name, $resource) {
75
+                $this->callback(function(array $args) use ($name, $resource) {
76 76
                     return isset($args[0])
77 77
                         && isset($args[1])
78 78
                         && $args[0] === $name
Please login to merge, or discard this patch.
Compiler/ConfigureResolveTargetEntitySubscriberPassTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
         $definition
69 69
             ->expects($this->once())
70 70
             ->method('setConfigurator')
71
-            ->with($this->callback(function (array $configurator) {
71
+            ->with($this->callback(function(array $configurator) {
72 72
                 return isset($configurator[0])
73 73
                     && isset($configurator[1])
74 74
                     && $configurator[0] instanceof Reference
@@ -117,7 +117,7 @@  discard block
 block discarded – undo
117 117
         $definition
118 118
             ->expects($this->once())
119 119
             ->method('setConfigurator')
120
-            ->with($this->callback(function (array $configurator) {
120
+            ->with($this->callback(function(array $configurator) {
121 121
                 return isset($configurator[0])
122 122
                 && isset($configurator[1])
123 123
                 && $configurator[0] instanceof Reference
Please login to merge, or discard this patch.