@@ -162,7 +162,7 @@ discard block |
||
| 162 | 162 | public function DataProviderTestDroppedConfigProperty() : Generator |
| 163 | 163 | { |
| 164 | 164 | foreach ($this->DataProviderHttpHandlerInstances() as $args) { |
| 165 | - list($implementation, , , $basePath, $config) = $args; |
|
| 165 | + list($implementation,,, $basePath, $config) = $args; |
|
| 166 | 166 | |
| 167 | 167 | foreach ($this->DataProviderVerifyHandlerGood() as $testArgs) { |
| 168 | 168 | list($baseUrl, $config) = $this->prepDataProviderVerifyHandlerGoodArgs( |
@@ -257,7 +257,7 @@ discard block |
||
| 257 | 257 | array $config, |
| 258 | 258 | array $testArgs |
| 259 | 259 | ) : array { |
| 260 | - list($sources, $prefix, , , $requestArgs) = $testArgs; |
|
| 260 | + list($sources, $prefix,,, $requestArgs) = $testArgs; |
|
| 261 | 261 | |
| 262 | 262 | list($uri) = (array) $requestArgs; |
| 263 | 263 | |
@@ -329,7 +329,7 @@ |
||
| 329 | 329 | ], |
| 330 | 330 | ], |
| 331 | 331 | array_map( |
| 332 | - function (InputArgument $arg) : array { |
|
| 332 | + function(InputArgument $arg) : array { |
|
| 333 | 333 | return [ |
| 334 | 334 | 'name' => $arg->getName(), |
| 335 | 335 | 'required' => $arg->isRequired(), |
@@ -83,7 +83,7 @@ discard block |
||
| 83 | 83 | |
| 84 | 84 | $cookie = current(array_filter( |
| 85 | 85 | $response->headers->getCookies(), |
| 86 | - function (Cookie $cookie) use ($cookieName) : bool { |
|
| 86 | + function(Cookie $cookie) use ($cookieName) : bool { |
|
| 87 | 87 | return $cookieName === $cookie->getName(); |
| 88 | 88 | } |
| 89 | 89 | )); |
@@ -132,7 +132,7 @@ discard block |
||
| 132 | 132 | |
| 133 | 133 | $cookie = current(array_filter( |
| 134 | 134 | $response->headers->getCookies(), |
| 135 | - function (Cookie $cookie) use ($cookieName) : bool { |
|
| 135 | + function(Cookie $cookie) use ($cookieName) : bool { |
|
| 136 | 136 | return $cookieName === $cookie->getName(); |
| 137 | 137 | } |
| 138 | 138 | )); |
@@ -70,7 +70,7 @@ |
||
| 70 | 70 | |
| 71 | 71 | public function AttachToEventDispatcher(EventDispatcher $dispatcher) : void |
| 72 | 72 | { |
| 73 | - $dispatcher->addListener(KernelEvents::REQUEST, function (GetResponseEvent $e) : void { |
|
| 73 | + $dispatcher->addListener(KernelEvents::REQUEST, function(GetResponseEvent $e) : void { |
|
| 74 | 74 | if ( ! $e->hasResponse()) { |
| 75 | 75 | $e->setResponse($this->handle($e->getRequest())); |
| 76 | 76 | } |