Completed
Pull Request — master (#30)
by
unknown
04:32
created
src/PropertyBagServiceProvider.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -42,11 +42,11 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 
Please login to merge, or discard this patch.