@@ -18,18 +18,18 @@ |
||
18 | 18 | public function handle($request, Closure $next) |
19 | 19 | { |
20 | 20 | // Verifies a valid signature and still outside expiration period |
21 | - if (! $request->hasValidSignature()) { |
|
21 | + if (!$request->hasValidSignature()) { |
|
22 | 22 | return redirect()->route('invite.expired'); |
23 | 23 | } |
24 | 24 | |
25 | - if (! $invitation = Invitation::findByToken($request->token)) { |
|
25 | + if (!$invitation = Invitation::findByToken($request->token)) { |
|
26 | 26 | return redirect()->route('invite.expired'); |
27 | 27 | } |
28 | 28 | |
29 | 29 | if (in_array($invitation->stateOf(InvitationState::KEY), [InvitationState::ACCEPTED, InvitationState::REVOKED])) { |
30 | 30 | |
31 | 31 | // We allow the user to pass if the invitee is already logged in. Otherwise the invite link cannot be reused. |
32 | - if (! auth()->guard('chief')->check() || ! auth()->guard('chief')->user()->is($invitation->invitee)) { |
|
32 | + if (!auth()->guard('chief')->check() || !auth()->guard('chief')->user()->is($invitation->invitee)) { |
|
33 | 33 | return redirect()->route('invite.expired'); |
34 | 34 | } |
35 | 35 | } |
@@ -82,7 +82,7 @@ |
||
82 | 82 | protected function unauthorized(\Illuminate\Http\Request $request, AuthorizationException $exception) |
83 | 83 | { |
84 | 84 | return redirect()->route('chief.back.dashboard') |
85 | - ->with('messages.error', 'Oeps. Het lijkt erop dat je geen toegang hebt tot dit deel van chief. Vraag even de beheerder voor meer info.'); |
|
85 | + ->with('messages.error', 'Oeps. Het lijkt erop dat je geen toegang hebt tot dit deel van chief. Vraag even de beheerder voor meer info.'); |
|
86 | 86 | } |
87 | 87 | |
88 | 88 | /** |
@@ -62,12 +62,12 @@ discard block |
||
62 | 62 | |
63 | 63 | private function shouldRenderChiefException(Throwable $exception): bool |
64 | 64 | { |
65 | - return (Str::startsWith(request()->path(), 'admin/') && ! $exception instanceof AuthenticationException && ! $exception instanceof ValidationException); |
|
65 | + return (Str::startsWith(request()->path(), 'admin/') && !$exception instanceof AuthenticationException && !$exception instanceof ValidationException); |
|
66 | 66 | } |
67 | 67 | |
68 | 68 | protected function renderChiefException(\Illuminate\Http\Request $request, Throwable $exception) |
69 | 69 | { |
70 | - if (! config('app.debug')) { |
|
70 | + if (!config('app.debug')) { |
|
71 | 71 | if ($request->expectsJson()) { |
72 | 72 | return response()->json(['error' => 'Something went wrong.'], 404); |
73 | 73 | } |
@@ -98,7 +98,7 @@ discard block |
||
98 | 98 | return response()->json(['error' => 'Unauthenticated.'], 401); |
99 | 99 | } |
100 | 100 | |
101 | - if (! empty($exception->guards()) && Arr::first($exception->guards()) == 'chief') { |
|
101 | + if (!empty($exception->guards()) && Arr::first($exception->guards()) == 'chief') { |
|
102 | 102 | return redirect()->guest(route('chief.back.login')); |
103 | 103 | } |
104 | 104 |
@@ -29,7 +29,7 @@ |
||
29 | 29 | $password = $passwordConfirm = null; |
30 | 30 | $tries = 0; |
31 | 31 | |
32 | - while (! $password || strlen($password) < 4 || $password != $passwordConfirm) { |
|
32 | + while (!$password || strlen($password) < 4 || $password != $passwordConfirm) { |
|
33 | 33 | if ($tries > 2) { |
34 | 34 | throw new \Exception('Aborting. Too many failed attempts to set password'); |
35 | 35 | } |
@@ -9,12 +9,12 @@ |
||
9 | 9 | |
10 | 10 | public function handle(): void |
11 | 11 | { |
12 | - if (! $this->hasArgument('part')) { |
|
12 | + if (!$this->hasArgument('part')) { |
|
13 | 13 | $part = $this->ask('which part'); |
14 | - } else { |
|
14 | + }else { |
|
15 | 15 | $part = $this->argument('part'); |
16 | 16 | } |
17 | 17 | |
18 | - $this->info($part . ' published'); |
|
18 | + $this->info($part.' published'); |
|
19 | 19 | } |
20 | 20 | } |
@@ -17,7 +17,7 @@ |
||
17 | 17 | } |
18 | 18 | |
19 | 19 | if ($this->option('reset')) { |
20 | - if (! $this->confirm('You are about to force reset the database in the ' . app()->environment() . ' environment! ARE YOU SURE?')) { |
|
20 | + if (!$this->confirm('You are about to force reset the database in the '.app()->environment().' environment! ARE YOU SURE?')) { |
|
21 | 21 | $this->info('aborting.'); |
22 | 22 | |
23 | 23 | return; |
@@ -14,12 +14,12 @@ discard block |
||
14 | 14 | */ |
15 | 15 | public function handle() |
16 | 16 | { |
17 | - if (app()->environment() != 'local' && ! $this->option('force')) { |
|
17 | + if (app()->environment() != 'local' && !$this->option('force')) { |
|
18 | 18 | throw new \Exception('You can only run the seeder in the local environment since this will inject a ton of default data'); |
19 | 19 | } |
20 | 20 | |
21 | 21 | if (app()->environment() != 'local' && $this->option('force')) { |
22 | - if (! $this->confirm('You are about to inject default seeding data in the ' . app()->environment() . ' database! Are you sure?')) { |
|
22 | + if (!$this->confirm('You are about to inject default seeding data in the '.app()->environment().' database! Are you sure?')) { |
|
23 | 23 | $this->info('You are welcome. I have just saved your job.'); |
24 | 24 | |
25 | 25 | return; |
@@ -29,6 +29,6 @@ discard block |
||
29 | 29 | $seederClass = $this->argument('seeder'); |
30 | 30 | app($seederClass)->run(); |
31 | 31 | |
32 | - $this->info($seederClass . ' has run successfully.'); |
|
32 | + $this->info($seederClass.' has run successfully.'); |
|
33 | 33 | } |
34 | 34 | } |
@@ -25,9 +25,9 @@ |
||
25 | 25 | $locales = config('chief.locales'); |
26 | 26 | |
27 | 27 | foreach ($locales as $locale) { |
28 | - $filepath = public_path('sitemap-' . $locale . '.xml'); |
|
28 | + $filepath = public_path('sitemap-'.$locale.'.xml'); |
|
29 | 29 | |
30 | - $this->info('Generating a sitemap for locale: ' . $locale . ' at: ' . $filepath); |
|
30 | + $this->info('Generating a sitemap for locale: '.$locale.' at: '.$filepath); |
|
31 | 31 | |
32 | 32 | $this->sitemapXmlFile->create($locale, $filepath, $this->createAlternateLocales($locales, $locale)); |
33 | 33 | } |
@@ -17,11 +17,11 @@ discard block |
||
17 | 17 | $firstname = null; |
18 | 18 | $lastname = null; |
19 | 19 | |
20 | - while (! $firstname) { |
|
20 | + while (!$firstname) { |
|
21 | 21 | $firstname = $this->ask('firstname'); |
22 | 22 | } |
23 | 23 | |
24 | - while (! $lastname) { |
|
24 | + while (!$lastname) { |
|
25 | 25 | $lastname = $this->ask('lastname'); |
26 | 26 | } |
27 | 27 | |
@@ -31,22 +31,22 @@ discard block |
||
31 | 31 | |
32 | 32 | if ($this->option('dev')) { |
33 | 33 | $role = 'developer'; |
34 | - } else { |
|
34 | + }else { |
|
35 | 35 | $role = 'admin'; |
36 | 36 | } |
37 | 37 | |
38 | 38 | $this->createUser($firstname, $lastname, $email, $password, [$role]); |
39 | 39 | |
40 | - $this->info($firstname . ' ' . $lastname . ' succesfully added as admin user.'); |
|
40 | + $this->info($firstname.' '.$lastname.' succesfully added as admin user.'); |
|
41 | 41 | } |
42 | 42 | |
43 | 43 | private function settingPermissionsAndRoles(): void |
44 | 44 | { |
45 | - AuthorizationDefaults::permissions()->each(function ($permissionName) { |
|
45 | + AuthorizationDefaults::permissions()->each(function($permissionName) { |
|
46 | 46 | Artisan::call('chief:permission', ['name' => $permissionName]); |
47 | 47 | }); |
48 | 48 | |
49 | - AuthorizationDefaults::roles()->each(function ($defaultPermissions, $roleName) { |
|
49 | + AuthorizationDefaults::roles()->each(function($defaultPermissions, $roleName) { |
|
50 | 50 | Artisan::call('chief:role', ['name' => $roleName, '--permissions' => implode(',', $defaultPermissions)]); |
51 | 51 | }); |
52 | 52 |
@@ -58,16 +58,16 @@ discard block |
||
58 | 58 | // Project defaults |
59 | 59 | (new ChiefRoutesServiceProvider($this->app))->boot(); |
60 | 60 | |
61 | - $this->loadMigrationsFrom(__DIR__ . '/../../database/migrations'); |
|
62 | - $this->loadTranslationsFrom(__DIR__ . '/../../resources/lang', 'chief'); |
|
61 | + $this->loadMigrationsFrom(__DIR__.'/../../database/migrations'); |
|
62 | + $this->loadTranslationsFrom(__DIR__.'/../../resources/lang', 'chief'); |
|
63 | 63 | |
64 | 64 | $this->publishes([ |
65 | - __DIR__ . '/../../config/chief.php' => config_path('chief.php'), |
|
66 | - __DIR__ . '/../../config/chief-settings.php' => config_path('chief-settings.php'), |
|
65 | + __DIR__.'/../../config/chief.php' => config_path('chief.php'), |
|
66 | + __DIR__.'/../../config/chief-settings.php' => config_path('chief-settings.php'), |
|
67 | 67 | ], 'chief-config'); |
68 | 68 | |
69 | 69 | $this->publishes([ |
70 | - __DIR__ . '/../../public/chief-assets' => public_path('/chief-assets'), |
|
70 | + __DIR__.'/../../public/chief-assets' => public_path('/chief-assets'), |
|
71 | 71 | ], 'chief-assets'); |
72 | 72 | |
73 | 73 | // Commands for both cli and web scripts |
@@ -119,37 +119,37 @@ discard block |
||
119 | 119 | public function register() |
120 | 120 | { |
121 | 121 | if ($this->app->runningInConsole()) { |
122 | - $this->callAfterResolving(Schedule::class, function (Schedule $schedule) { |
|
122 | + $this->callAfterResolving(Schedule::class, function(Schedule $schedule) { |
|
123 | 123 | $schedule->command('chief:sitemap')->dailyAt("01:00"); |
124 | 124 | }); |
125 | 125 | } |
126 | 126 | |
127 | - $this->mergeConfigFrom(__DIR__ . '/../../config/chief.php', 'chief'); |
|
128 | - $this->mergeConfigFrom(__DIR__ . '/../../config/chief-settings.php', 'chief-settings'); |
|
127 | + $this->mergeConfigFrom(__DIR__.'/../../config/chief.php', 'chief'); |
|
128 | + $this->mergeConfigFrom(__DIR__.'/../../config/chief-settings.php', 'chief-settings'); |
|
129 | 129 | |
130 | 130 | $this->setupEnvironmentProviders(); |
131 | 131 | |
132 | 132 | $this->app->when(SettingsController::class) |
133 | 133 | ->needs(SettingFields::class) |
134 | - ->give(function () { |
|
134 | + ->give(function() { |
|
135 | 135 | return new SettingFields(new Settings()); |
136 | 136 | }); |
137 | 137 | |
138 | - $this->app->singleton(Registry::class, function () { |
|
138 | + $this->app->singleton(Registry::class, function() { |
|
139 | 139 | return new Registry([], [], new TaggedKeys()); |
140 | 140 | }); |
141 | 141 | |
142 | 142 | // Global chief nav singleton |
143 | - $this->app->singleton(Nav::class, function () { |
|
143 | + $this->app->singleton(Nav::class, function() { |
|
144 | 144 | return new Nav(); |
145 | 145 | }); |
146 | 146 | |
147 | 147 | // Setup commands |
148 | - $this->app->bind(CreatePageCommand::class, function ($app) { |
|
148 | + $this->app->bind(CreatePageCommand::class, function($app) { |
|
149 | 149 | return new CreatePageCommand($app->make(FileManipulation::class), new SetupConfig(config('chief.setup', []))); |
150 | 150 | }); |
151 | 151 | |
152 | - $this->app->bind(CreateFragmentCommand::class, function ($app) { |
|
152 | + $this->app->bind(CreateFragmentCommand::class, function($app) { |
|
153 | 153 | return new CreateFragmentCommand($app->make(FileManipulation::class), new SetupConfig(config('chief.setup', []))); |
154 | 154 | }); |
155 | 155 | |
@@ -181,7 +181,7 @@ discard block |
||
181 | 181 | */ |
182 | 182 | private function setupEnvironmentProviders(): void |
183 | 183 | { |
184 | - if (! $this->app->environment('production') && $services = config('app.providers-' . app()->environment(), false)) { |
|
184 | + if (!$this->app->environment('production') && $services = config('app.providers-'.app()->environment(), false)) { |
|
185 | 185 | foreach ($services as $service) { |
186 | 186 | $this->app->register($service); |
187 | 187 | } |
@@ -216,10 +216,10 @@ discard block |
||
216 | 216 | private function registerSquanto(): void |
217 | 217 | { |
218 | 218 | // Project specific squanto files |
219 | - $this->app['view']->addNamespace('squanto', __DIR__ . '/../../resources/views/vendor/squanto'); |
|
219 | + $this->app['view']->addNamespace('squanto', __DIR__.'/../../resources/views/vendor/squanto'); |
|
220 | 220 | |
221 | 221 | // Chief squanto defaults |
222 | - $this->app['view']->addNamespace('squanto', base_path() . '/resources/views/vendor/thinktomorrow/chief/vendor/squanto'); |
|
222 | + $this->app['view']->addNamespace('squanto', base_path().'/resources/views/vendor/thinktomorrow/chief/vendor/squanto'); |
|
223 | 223 | |
224 | 224 | // Use the chief routing |
225 | 225 | $this->app['config']['squanto.use_default_routes'] = false; |