Passed
Push — master ( 598e13...ed238e )
by Byron
47s queued 11s
created
src/Validation/JsonSchemaValidator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -114,7 +114,7 @@
 block discarded – undo
114 114
      */
115 115
     public function after($callback)
116 116
     {
117
-        $this->after[] = function () use ($callback) {
117
+        $this->after[] = function() use ($callback) {
118 118
             return call_user_func_array($callback, [$this]);
119 119
         };
120 120
 
Please login to merge, or discard this patch.
src/Console/MakeJsonSchemaRequestCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -14,11 +14,11 @@
 block discarded – undo
14 14
 
15 15
     protected function getStub()
16 16
     {
17
-        return __DIR__ . '/../../stubs/json-schema-request.stub';
17
+        return __DIR__.'/../../stubs/json-schema-request.stub';
18 18
     }
19 19
 
20 20
     protected function getDefaultNamespace($rootNamespace)
21 21
     {
22
-        return $rootNamespace . '\Http\Requests';
22
+        return $rootNamespace.'\Http\Requests';
23 23
     }
24 24
 }
25 25
\ No newline at end of file
Please login to merge, or discard this patch.
src/JsonSchemaRequestServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@
 block discarded – undo
13 13
      */
14 14
     public function boot()
15 15
     {
16
-        $this->app->resolving(JsonSchemaRequest::class, function ($request, $app) {
16
+        $this->app->resolving(JsonSchemaRequest::class, function($request, $app) {
17 17
             $request = JsonSchemaRequest::createFrom($app['request'], $request);
18 18
             $request->setContainer($app);
19 19
         });
Please login to merge, or discard this patch.