@@ -13,8 +13,8 @@ discard block |
||
| 13 | 13 | */ |
| 14 | 14 | public function register() |
| 15 | 15 | { |
| 16 | - Collection::macro('clean', function ($class = null) { |
|
| 17 | - return $this->map(function (Model $item) use ($class) { |
|
| 16 | + Collection::macro('clean', function($class = null) { |
|
| 17 | + return $this->map(function(Model $item) use ($class) { |
|
| 18 | 18 | return $item->clean($class); |
| 19 | 19 | }); |
| 20 | 20 | }); |
@@ -27,7 +27,7 @@ discard block |
||
| 27 | 27 | */ |
| 28 | 28 | protected function registerCommands() |
| 29 | 29 | { |
| 30 | - $this->app->singleton('command.laundromat.create', function ($app) { |
|
| 30 | + $this->app->singleton('command.laundromat.create', function($app) { |
|
| 31 | 31 | return $app['LaravelLaundromat\commands\CreateCleaner']; |
| 32 | 32 | }); |
| 33 | 33 | |