Passed
Push — ft/sitemap ( 686bce...8c914b )
by Ben
07:09
created
src/Urls/UrlRecord.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
     }
Please login to merge, or discard this patch.
src/System/Sitemap/SitemapXml.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
     }
Please login to merge, or discard this patch.