Completed
Push — master ( 6aead6...d2648f )
by Andreas
17s
created
src/Notification/MastodonNotifier.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
         $uri  = $this->shortenUri($cfp->uri);
47 47
         $tags = '';
48 48
         if ($cfp->tags !== []) {
49
-            $tags = ' #' . implode(' #', $cfp->tags);
49
+            $tags = ' #'.implode(' #', $cfp->tags);
50 50
         }
51 51
 
52 52
         $notificationString = sprintf(
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
         if (strlen($name) < 70) {
72 72
             return $name;
73 73
         }
74
-        return substr($name, 0, 69) . '…';
74
+        return substr($name, 0, 69).'…';
75 75
     }
76 76
 
77 77
     protected function shortenUri($uri)
Please login to merge, or discard this patch.