Passed
Push — master ( 169e92...f939d9 )
by
unknown
02:56
created
src/LaravelReposServiceProvider.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -24,13 +24,13 @@  discard block
 block discarded – undo
24 24
         }
25 25
 
26 26
         $this->publishes([
27
-            __DIR__.'/config/repositories.php' => config_path('repositories.php'),
27
+            __DIR__ . '/config/repositories.php' => config_path('repositories.php'),
28 28
         ]);
29 29
     }
30 30
 
31 31
     public function register()
32 32
     {
33
-        $this->app->singleton(ContainerAwareResolver::class, function ($app) {
33
+        $this->app->singleton(ContainerAwareResolver::class, function($app) {
34 34
             return new ContainerAwareResolver($app);
35 35
         });
36 36
 
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
             throw new \Exception('Invalid repository config');
41 41
         }
42 42
 
43
-        $this->app->singleton(RepositoryFactory::class, function ($app) {
43
+        $this->app->singleton(RepositoryFactory::class, function($app) {
44 44
             foreach (config('repositories.resolvers') as $resolverClass) {
45 45
                 $resolver = App::get($resolverClass);
46 46
 
Please login to merge, or discard this patch.