Completed
Push — master ( 7dd1d0...aab79e )
by Nekrasov
03:59
created
src/ServiceProvider.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
     public function register()
16 16
     {
17
-        $this->app->singleton(ChecksCollection::class, function ($app) {
17
+        $this->app->singleton(ChecksCollection::class, function($app) {
18 18
             return new ChecksCollection($app);
19 19
         });
20 20
 
21
-        $this->app->singleton('command.system.check', function ($app) {
21
+        $this->app->singleton('command.system.check', function($app) {
22 22
             return new SystemCheckCommand($app->make(ChecksCollection::class));
23 23
         });
24 24
 
Please login to merge, or discard this patch.