Skip to content

Commit 1f7290a

Browse files
Fix styling
1 parent 5fcf983 commit 1f7290a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

config/fv-sitemap.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,6 @@
4747
* Specifies the model class to be used for fetching posts to be included in the sitemap.
4848
*/
4949
'post_model' => [
50-
//App\Models\Post::class,
50+
// App\Models\Post::class,
5151
],
5252
];

src/Commands/SitemapGenerateCommand.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ protected function isRedirect(string $url): bool
202202
return false;
203203
}
204204

205-
$client = new Client();
205+
$client = new Client;
206206
try {
207207
$response = $client->request('HEAD', $url, ['allow_redirects' => false]);
208208
$statusCode = $response->getStatusCode();

0 commit comments

Comments
 (0)