@@ -77,7 +77,7 @@ discard block |
||
77 | 77 | */ |
78 | 78 | $this->bootFrontendEssentials(); |
79 | 79 | |
80 | - if (! $this->app->make(AdminEnvironment::class)->check(request())) { |
|
80 | + if (!$this->app->make(AdminEnvironment::class)->check(request())) { |
|
81 | 81 | return; |
82 | 82 | } |
83 | 83 | |
@@ -107,18 +107,18 @@ discard block |
||
107 | 107 | |
108 | 108 | public function register() |
109 | 109 | { |
110 | - $this->mergeConfigFrom(__DIR__ . '/../../config/chief.php', 'chief'); |
|
111 | - $this->mergeConfigFrom(__DIR__ . '/../../config/chief-settings.php', 'chief-settings'); |
|
110 | + $this->mergeConfigFrom(__DIR__.'/../../config/chief.php', 'chief'); |
|
111 | + $this->mergeConfigFrom(__DIR__.'/../../config/chief-settings.php', 'chief-settings'); |
|
112 | 112 | |
113 | 113 | if ($this->app->runningInConsole()) { |
114 | 114 | (new ConsoleServiceProvider($this->app))->register(); |
115 | 115 | } |
116 | 116 | |
117 | - $this->app->singleton(Registry::class, function () { |
|
117 | + $this->app->singleton(Registry::class, function() { |
|
118 | 118 | return new Registry([]); |
119 | 119 | }); |
120 | 120 | |
121 | - $this->app->singleton(Settings::class, function () { |
|
121 | + $this->app->singleton(Settings::class, function() { |
|
122 | 122 | return new Settings(); |
123 | 123 | }); |
124 | 124 | |
@@ -129,12 +129,12 @@ discard block |
||
129 | 129 | if ($this->app->make(AdminEnvironment::class)->check(request())) { |
130 | 130 | $this->app->when(SettingsController::class) |
131 | 131 | ->needs(SettingFields::class) |
132 | - ->give(function () { |
|
132 | + ->give(function() { |
|
133 | 133 | return new SettingFields(new Settings()); |
134 | 134 | }); |
135 | 135 | |
136 | 136 | // Global chief nav singleton |
137 | - $this->app->singleton(Nav::class, function () { |
|
137 | + $this->app->singleton(Nav::class, function() { |
|
138 | 138 | return new Nav(); |
139 | 139 | }); |
140 | 140 | |
@@ -168,7 +168,7 @@ discard block |
||
168 | 168 | 'role' => \Thinktomorrow\Chief\Admin\Authorization\Role::class, |
169 | 169 | ]; |
170 | 170 | |
171 | - Auth::provider('chief-eloquent', function ($app, array $config) { |
|
171 | + Auth::provider('chief-eloquent', function($app, array $config) { |
|
172 | 172 | return new ChiefUserProvider($app['hash'], $config['model']); |
173 | 173 | }); |
174 | 174 | } |
@@ -176,10 +176,10 @@ discard block |
||
176 | 176 | private function bootChiefSquanto(): void |
177 | 177 | { |
178 | 178 | // Project specific squanto files |
179 | - $this->app['view']->addNamespace('squanto', __DIR__ . '/../../resources/views/vendor/squanto'); |
|
179 | + $this->app['view']->addNamespace('squanto', __DIR__.'/../../resources/views/vendor/squanto'); |
|
180 | 180 | |
181 | 181 | // Chief squanto defaults |
182 | - $this->app['view']->addNamespace('squanto', base_path() . '/resources/views/vendor/thinktomorrow/chief/vendor/squanto'); |
|
182 | + $this->app['view']->addNamespace('squanto', base_path().'/resources/views/vendor/thinktomorrow/chief/vendor/squanto'); |
|
183 | 183 | |
184 | 184 | // Use the chief routing |
185 | 185 | $this->app['config']['squanto.use_default_routes'] = false; |
@@ -190,7 +190,7 @@ discard block |
||
190 | 190 | // User events |
191 | 191 | Event::listen(Login::class, LogSuccessfulLogin::class); |
192 | 192 | Event::listen(UserInvited::class, SendInvite::class); |
193 | - Event::listen(InviteAccepted::class, EnableUser::class . '@onAcceptingInvite'); |
|
193 | + Event::listen(InviteAccepted::class, EnableUser::class.'@onAcceptingInvite'); |
|
194 | 194 | |
195 | 195 | // Managed model events |
196 | 196 | Event::listen(ManagedModelCreated::class, [CreateUrlForPage::class, 'onManagedModelCreated']); |
@@ -237,7 +237,7 @@ discard block |
||
237 | 237 | Relation::morphMap(['fragmentmodel' => FragmentModel::class]); |
238 | 238 | Relation::morphMap(['chiefuser' => User::class]); |
239 | 239 | |
240 | - Blade::directive('fragments', function () { |
|
240 | + Blade::directive('fragments', function() { |
|
241 | 241 | return '<?php echo app(\\Thinktomorrow\\Chief\\Fragments\\FragmentsRenderer::class)->render($model instanceof \Thinktomorrow\Chief\Shared\Concerns\Nestable\Tree\NestedNode ? $model->getModel() : $model, get_defined_vars()); ?>'; |
242 | 242 | }); |
243 | 243 | } |