@@ -42,11 +42,11 @@ discard block |
||
| 42 | 42 | */ |
| 43 | 43 | protected function registerCommands() |
| 44 | 44 | { |
| 45 | - $this->app->singleton('command.pbag.make', function ($app) { |
|
| 45 | + $this->app->singleton('command.pbag.make', function($app) { |
|
| 46 | 46 | return $app['LaravelPropertyBag\Commands\PublishSettingsConfig']; |
| 47 | 47 | }); |
| 48 | 48 | |
| 49 | - $this->app->singleton('command.pbag.rules', function ($app) { |
|
| 49 | + $this->app->singleton('command.pbag.rules', function($app) { |
|
| 50 | 50 | return $app['LaravelPropertyBag\Commands\PublishRulesFile']; |
| 51 | 51 | }); |
| 52 | 52 | |
@@ -59,7 +59,7 @@ discard block |
||
| 59 | 59 | { |
| 60 | 60 | $propertyBagModel = config('property-bag.property_bag_model') ?? PropertyBag::class; |
| 61 | 61 | |
| 62 | - if (! is_a($propertyBagModel, Model::class, true)) { |
|
| 62 | + if (!is_a($propertyBagModel, Model::class, true)) { |
|
| 63 | 63 | throw new ModelNotFoundException($propertyBagModel); |
| 64 | 64 | } |
| 65 | 65 | |