@@ -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()) |
@@ -174,9 +174,9 @@ discard block |
||
| 174 | 174 | ->get(); |
| 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 | - return $records->map(function(UrlRecord $urlRecord){ |
|
| 177 | + return $records->map(function(UrlRecord $urlRecord) { |
|
| 178 | 178 | return Morphables::instance($urlRecord->model_type)->find($urlRecord->model_id); |
| 179 | - })->reject(function(ProvidesUrl $model){ |
|
| 179 | + })->reject(function(ProvidesUrl $model) { |
|
| 180 | 180 | return (method_exists($model, 'isPublished') && !$model->isPublished()); |
| 181 | 181 | }); |
| 182 | 182 | } |
@@ -43,7 +43,7 @@ discard block |
||
| 43 | 43 | |
| 44 | 44 | private function generateXml(): string |
| 45 | 45 | { |
| 46 | - foreach($this->urls as $url) { |
|
| 46 | + foreach ($this->urls as $url) { |
|
| 47 | 47 | $this->sitemap->add($url); |
| 48 | 48 | } |
| 49 | 49 | |
@@ -63,12 +63,12 @@ discard block |
||
| 63 | 63 | { |
| 64 | 64 | $pool = new Pool($this->httpClient, $this->crawlableUrlGenerator(), [ |
| 65 | 65 | 'concurrency' => 5, |
| 66 | - 'fulfilled' => function (Response $response, $index) { |
|
| 67 | - if($response->getStatusCode() !== \Symfony\Component\HttpFoundation\Response::HTTP_OK){ |
|
| 66 | + 'fulfilled' => function(Response $response, $index) { |
|
| 67 | + if ($response->getStatusCode() !== \Symfony\Component\HttpFoundation\Response::HTTP_OK) { |
|
| 68 | 68 | unset($this->urls[$index]); |
| 69 | 69 | } |
| 70 | 70 | }, |
| 71 | - 'rejected' => function (RequestException $reason, $index) { |
|
| 71 | + 'rejected' => function(RequestException $reason, $index) { |
|
| 72 | 72 | trap($reason); |
| 73 | 73 | unset($this->urls[$index]); |
| 74 | 74 | }, |
@@ -83,7 +83,7 @@ discard block |
||
| 83 | 83 | |
| 84 | 84 | private function crawlableUrlGenerator(): \Generator |
| 85 | 85 | { |
| 86 | - foreach($this->urls as $index => $url){ |
|
| 86 | + foreach ($this->urls as $index => $url) { |
|
| 87 | 87 | yield $index => new Request('GET', $url); |
| 88 | 88 | } |
| 89 | 89 | } |