Passed
Push — master ( cafdd0...f4a7a1 )
by Alexey
03:53
created
src/Framework/tests/RoutesCommandTest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -33,9 +33,9 @@
 block discarded – undo
33 33
         $routeCollector = Mockery::mock(\Venta\Contracts\Routing\RouteCollector::class);
34 34
         $route = (new \Venta\Routing\Route(['GET', 'POST'], '/qwerty', 'callable'))
35 35
             ->withHost('localhost')
36
-            ->withMiddleware('middleware1', function () {
36
+            ->withMiddleware('middleware1', function() {
37 37
             })
38
-            ->withMiddleware('middleware2', function () {
38
+            ->withMiddleware('middleware2', function() {
39 39
             })
40 40
             ->withName('named')
41 41
             ->withScheme('http');
Please login to merge, or discard this patch.
src/Framework/tests/ErrorHandlerProviderTest.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
         $provider->provideServices($app);
34 34
         $collector = Mockery::mock(\Venta\Contracts\Routing\MiddlewareCollector::class);
35 35
         $collector->shouldReceive('pushMiddleware')
36
-                  ->with('error_handler', \Venta\Framework\ErrorHandler\ErrorHandlerMiddleware::class);
36
+                    ->with('error_handler', \Venta\Framework\ErrorHandler\ErrorHandlerMiddleware::class);
37 37
         $provider->provideMiddlewares($collector);
38 38
     }
39 39
 
Please login to merge, or discard this patch.