@@ -30,7 +30,7 @@ discard block |
||
30 | 30 | $targetUrlRecord = $urlRecord->redirectTo(); |
31 | 31 | $targetModel = Morphables::instance($targetUrlRecord->model_type)->find($targetUrlRecord->model_id); |
32 | 32 | |
33 | - if(!$targetModel) { |
|
33 | + if (!$targetModel) { |
|
34 | 34 | throw new \DomainException('Corrupt target model for this url request. Model by reference ['.$targetUrlRecord->model_type.'@'.$targetUrlRecord->model_id.'] has probably been archived or deleted.'); |
35 | 35 | } |
36 | 36 | |
@@ -40,15 +40,15 @@ discard block |
||
40 | 40 | return static::createRedirect($model->url($locale)); |
41 | 41 | } |
42 | 42 | |
43 | - if(!$model) { |
|
43 | + if (!$model) { |
|
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) |