Completed
Push — master ( 0d2450...83f575 )
by Marc
24s queued 13s
created
src/RobotsServiceProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
      */
39 39
     public function register()
40 40
     {
41
-        $this->app->singleton('robots', function ($app) {
41
+        $this->app->singleton('robots', function($app) {
42 42
             return new Robots();
43 43
         });
44 44
 
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
         $timestamp = date('Y_m_d_His');
62 62
 
63 63
         return Collection::make($this->app->databasePath().DIRECTORY_SEPARATOR.'migrations'.DIRECTORY_SEPARATOR)
64
-            ->flatMap(function ($path) use ($filesystem) {
64
+            ->flatMap(function($path) use ($filesystem) {
65 65
                 return $filesystem->glob($path.'*_create_robots_tables.php');
66 66
             })->push($this->app->databasePath()."/migrations/{$timestamp}_create_robots_tables.php")
67 67
             ->first();
Please login to merge, or discard this patch.