Passed
Pull Request — master (#2)
by Byron
02:37
created
src/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/ServiceProvider.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.