| @@ -38,7 +38,7 @@ discard block | ||
| 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 | ||
| 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(); |