File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ public function verifyAuthor(User $user)
68
68
69
69
$ this ->dispatchSync (new VerifyAuthor ($ user ));
70
70
71
- $ this ->success ($ user ->name () . ' was verified! ' );
71
+ $ this ->success ($ user ->name (). ' was verified! ' );
72
72
73
73
return redirect ()->route ('admin.users ' );
74
74
}
@@ -79,7 +79,7 @@ public function unverifyAuthor(User $user)
79
79
80
80
$ this ->dispatchSync (new UnverifyAuthor ($ user ));
81
81
82
- $ this ->success ($ user ->name () . ' was unverified! ' );
82
+ $ this ->success ($ user ->name (). ' was unverified! ' );
83
83
84
84
return redirect ()->route ('admin.users ' );
85
85
}
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ protected function fetchUnsplashImageDataFromId(Article $article): ?array
40
40
if ($ response ->failed ()) {
41
41
$ article ->hero_image_id = null ;
42
42
$ article ->save ();
43
-
43
+
44
44
return null ;
45
45
}
46
46
@@ -57,4 +57,4 @@ protected function fetchUnsplashImageDataFromId(Article $article): ?array
57
57
'author_url ' => $ response ['user ' ]['links ' ]['html ' ],
58
58
];
59
59
}
60
- }
60
+ }
You can’t perform that action at this time.
0 commit comments