Test Setup Failed
Push — master ( 31710d...a28762 )
by SignpostMarv
02:36
created
Tests/HttpHandlerTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -162,7 +162,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.
Tests/ApplicationTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -329,7 +329,7 @@
 block discarded – undo
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(),
Please login to merge, or discard this patch.
Tests/CookieMiddlewareTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -83,7 +83,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 		));
Please login to merge, or discard this patch.
src/HttpHandler.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -70,7 +70,7 @@
 block discarded – undo
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
 			}
Please login to merge, or discard this patch.