Skip to content

Commit 9504a86

Browse files
committed
Apply fixes from StyleCI
1 parent 6581f24 commit 9504a86

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/Http/Controllers/Articles/ArticlesController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public function show(Article $article)
3232
$article->isPublished() || (Auth::check() && $article->isAuthoredBy(Auth::user())),
3333
404
3434
);
35-
35+
3636
return view('articles.show', [
3737
'article' => $article,
3838
]);

tests/Feature/ArticleTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@ public function custom_canonical_urls_are_rendered()
326326
factory(Article::class)->create([
327327
'slug' => 'my-first-article',
328328
'original_url' => 'https://joedixon.co.uk/my-first-article',
329-
'published_at' => now()
329+
'published_at' => now(),
330330
]);
331331

332332
$this->get('/articles/my-first-article')

0 commit comments

Comments
 (0)