@@ -37,7 +37,7 @@ discard block |
||
| 37 | 37 | ->first(); |
| 38 | 38 | |
| 39 | 39 | if (!$record) { |
| 40 | - throw new UrlRecordNotFound('No url record found by slug [' . $slug . '] for locale [' . $locale . '].'); |
|
| 40 | + throw new UrlRecordNotFound('No url record found by slug ['.$slug.'] for locale ['.$locale.'].'); |
|
| 41 | 41 | } |
| 42 | 42 | |
| 43 | 43 | return $record; |
@@ -61,7 +61,7 @@ discard block |
||
| 61 | 61 | ->first(); |
| 62 | 62 | |
| 63 | 63 | if (!$record) { |
| 64 | - throw new UrlRecordNotFound('No url record found for model [' . $model->getMorphClass() . '@' . $model->id . '] for locale [' . $locale . '].'); |
|
| 64 | + throw new UrlRecordNotFound('No url record found for model ['.$model->getMorphClass().'@'.$model->id.'] for locale ['.$locale.'].'); |
|
| 65 | 65 | } |
| 66 | 66 | |
| 67 | 67 | return $record; |
@@ -155,7 +155,7 @@ discard block |
||
| 155 | 155 | } |
| 156 | 156 | |
| 157 | 157 | if ($ignoredModel) { |
| 158 | - $builder->whereNotIn('id', function ($query) use ($ignoredModel) { |
|
| 158 | + $builder->whereNotIn('id', function($query) use ($ignoredModel) { |
|
| 159 | 159 | $query->select('id') |
| 160 | 160 | ->from('chief_urls') |
| 161 | 161 | ->where('model_type', '=', $ignoredModel->getMorphClass()) |
@@ -175,11 +175,11 @@ discard block |
||
| 175 | 175 | |
| 176 | 176 | // Filter out offline urls... TODO: this should be a state that is owned by the url and not the model. |
| 177 | 177 | // Because of archived pages the mapping can be null so we reject them before we check for online |
| 178 | - return $records->map(function(UrlRecord $urlRecord){ |
|
| 178 | + return $records->map(function(UrlRecord $urlRecord) { |
|
| 179 | 179 | return Morphables::instance($urlRecord->model_type)->find($urlRecord->model_id); |
| 180 | - })->reject(function($model){ |
|
| 180 | + })->reject(function($model) { |
|
| 181 | 181 | return $model == null; |
| 182 | - })->reject(function(ProvidesUrl $model){ |
|
| 182 | + })->reject(function(ProvidesUrl $model) { |
|
| 183 | 183 | return (method_exists($model, 'isPublished') && !$model->isPublished()); |
| 184 | 184 | }); |
| 185 | 185 | } |