Test Failed
Push — master ( e22c12...f8889b )
by Sergio
02:38
created
src/Middleware/IncludeInSpecification.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,6 +20,6 @@
 block discarded – undo
20 20
 
21 21
 	public function terminate($request, $response)
22 22
 	{
23
-		dd([$request, $response]);
23
+		dd([ $request, $response ]);
24 24
 	}
25 25
 }
26 26
\ No newline at end of file
Please login to merge, or discard this patch.
src/ServiceProvider.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -20,9 +20,9 @@
 block discarded – undo
20 20
 	 *
21 21
 	 * @return void
22 22
 	 */
23
-	public function boot(){
24
-		if($this->app->runningUnitTests()){
25
-			$this->app[Kernel::class]->pushMiddleware(IncludeInSpecification::class);
23
+	public function boot() {
24
+		if ($this->app->runningUnitTests()) {
25
+			$this->app[ Kernel::class ]->pushMiddleware(IncludeInSpecification::class);
26 26
 		}
27 27
 	}
28 28
 }
29 29
\ No newline at end of file
Please login to merge, or discard this patch.