Passed
Pull Request — master (#177)
by webdevetc
04:37 queued 19s
created
src/Services/FeedService.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -39,10 +39,10 @@
 block discarded – undo
39 39
         // (Use check(), as it is possible for user to be logged in without having an ID (depending on how the guard
40 40
         // is set up...)
41 41
         $userOrGuest = Auth::check()
42
-            ? 'logged-in-' . Auth::id()
42
+            ? 'logged-in-'.Auth::id()
43 43
             : 'guest';
44 44
 
45
-        $key = 'blogetc-' . $feedType . $userOrGuest;
45
+        $key = 'blogetc-'.$feedType.$userOrGuest;
46 46
 
47 47
         $feed->setCache(
48 48
             config('blogetc.rssfeed.cache_in_minutes', 60),
Please login to merge, or discard this patch.
src/Controllers/FeedController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@
 block discarded – undo
53 53
 
54 54
         /** @var Post $post */
55 55
         foreach ($posts as $post) {
56
-            $feed->addItem(  [
56
+            $feed->addItem([
57 57
                     'title' => $post->title,
58 58
                     'author' => $post->authorString(),
59 59
                     'url' => $post->url(),
Please login to merge, or discard this patch.