@@ -1,6 +1,6 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare(strict_types = 1); |
|
| 3 | +declare(strict_types=1); |
|
| 4 | 4 | |
| 5 | 5 | namespace Thinktomorrow\Chief\HealthMonitor\Checks; |
| 6 | 6 | |
@@ -1,6 +1,6 @@ |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare(strict_types = 1); |
|
| 3 | +declare(strict_types=1); |
|
| 4 | 4 | |
| 5 | 5 | namespace Thinktomorrow\Chief\HealthMonitor\Notifiers; |
| 6 | 6 | |
@@ -1,5 +1,5 @@ |
||
| 1 | 1 | <?php |
| 2 | -declare(strict_types = 1); |
|
| 2 | +declare(strict_types=1); |
|
| 3 | 3 | |
| 4 | 4 | namespace Thinktomorrow\Chief\Fields\Types; |
| 5 | 5 | |
@@ -1,5 +1,5 @@ |
||
| 1 | 1 | <?php |
| 2 | -declare(strict_types = 1); |
|
| 2 | +declare(strict_types=1); |
|
| 3 | 3 | |
| 4 | 4 | namespace Thinktomorrow\Chief\Fields\Types; |
| 5 | 5 | |
@@ -1,5 +1,5 @@ |
||
| 1 | 1 | <?php |
| 2 | -declare(strict_types = 1); |
|
| 2 | +declare(strict_types=1); |
|
| 3 | 3 | |
| 4 | 4 | namespace Thinktomorrow\Chief\Fields\Types; |
| 5 | 5 | |
@@ -44,7 +44,7 @@ |
||
| 44 | 44 | |
| 45 | 45 | public static function getByModel(Model $model) |
| 46 | 46 | { |
| 47 | - return chiefMemoize('url-records-get-by-model', function ($model) { |
|
| 47 | + return chiefMemoize('url-records-get-by-model', function($model) { |
|
| 48 | 48 | return parent::getByModel($model); |
| 49 | 49 | }, [$model]); |
| 50 | 50 | } |
@@ -44,11 +44,11 @@ discard block |
||
| 44 | 44 | throw new \DomainException('Corrupt target model for this url request. Model by reference ['.$urlRecord->model_type.'@'.$urlRecord->model_id.'] has probably been archived or deleted.'); |
| 45 | 45 | } |
| 46 | 46 | |
| 47 | - if (method_exists($model, 'isPublished') && ! $model->isPublished()) { |
|
| 47 | + if (method_exists($model, 'isPublished') && !$model->isPublished()) { |
|
| 48 | 48 | |
| 49 | 49 | /** When admin is logged in and this request is in preview mode, we allow the view */ |
| 50 | - if (! PreviewMode::fromRequest()->check()) { |
|
| 51 | - throw new NotFoundHttpException('Model found for request ['. $slug .'] but it is not published.'); |
|
| 50 | + if (!PreviewMode::fromRequest()->check()) { |
|
| 51 | + throw new NotFoundHttpException('Model found for request ['.$slug.'] but it is not published.'); |
|
| 52 | 52 | } |
| 53 | 53 | } |
| 54 | 54 | |
@@ -59,7 +59,7 @@ discard block |
||
| 59 | 59 | } |
| 60 | 60 | } |
| 61 | 61 | |
| 62 | - throw new NotFoundHttpException('No url or model found for request ['. $slug .'] for locale ['.$locale.'].'); |
|
| 62 | + throw new NotFoundHttpException('No url or model found for request ['.$slug.'] for locale ['.$locale.'].'); |
|
| 63 | 63 | } |
| 64 | 64 | |
| 65 | 65 | private static function createRedirect(string $url) |
@@ -18,7 +18,7 @@ |
||
| 18 | 18 | $this->model = $model; |
| 19 | 19 | $this->blacklist = $blacklist; |
| 20 | 20 | |
| 21 | - $this->slugResolver = function ($slug) { |
|
| 21 | + $this->slugResolver = function($slug) { |
|
| 22 | 22 | return Illuminate\Support\Str::slug($slug); |
| 23 | 23 | }; |
| 24 | 24 | } |
@@ -1,6 +1,6 @@ discard block |
||
| 1 | 1 | <?php |
| 2 | 2 | |
| 3 | -declare(strict_types = 1); |
|
| 3 | +declare(strict_types=1); |
|
| 4 | 4 | |
| 5 | 5 | namespace Thinktomorrow\Chief\HealthMonitor\Checks; |
| 6 | 6 | |
@@ -16,7 +16,7 @@ discard block |
||
| 16 | 16 | |
| 17 | 17 | private function get_http_response_code(string $url) |
| 18 | 18 | { |
| 19 | - if ($url =='') { |
|
| 19 | + if ($url == '') { |
|
| 20 | 20 | return false; |
| 21 | 21 | } |
| 22 | 22 | |
@@ -34,7 +34,7 @@ discard block |
||
| 34 | 34 | |
| 35 | 35 | public function message(): string |
| 36 | 36 | { |
| 37 | - return 'Het lijkt erop dat de homepagina niet meer bereikbaar is. <a href="'. route('chief.back.settings.edit') .'" class="text-secondary-800 underline hover:text-white">Kies een nieuwe</a>.'; |
|
| 37 | + return 'Het lijkt erop dat de homepagina niet meer bereikbaar is. <a href="'.route('chief.back.settings.edit').'" class="text-secondary-800 underline hover:text-white">Kies een nieuwe</a>.'; |
|
| 38 | 38 | } |
| 39 | 39 | |
| 40 | 40 | public function notifiers(): array |