Passed
Push — master ( 0c6030...dc56c2 )
by Dan
01:55
created
src/Giphy/GiphyPlugin.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@  discard block
 block discarded – undo
66 66
     {
67 67
         if (trim($matches[1]) === 'formats') {
68 68
             $formats = $this->getFormats();
69
-            $msg->reply('Available formats: ' . implode(' ', $formats));
69
+            $msg->reply('Available formats: '.implode(' ', $formats));
70 70
             $msg->setHandled(true);
71 71
             return;
72 72
         }
@@ -76,10 +76,10 @@  discard block
 block discarded – undo
76 76
         $format = $this->getFormat($terms);
77 77
 
78 78
         $this->giphyService->search($query, $format)->then(
79
-            function (string $gifUrl) use ($msg) {
79
+            function(string $gifUrl) use ($msg) {
80 80
                 $msg->reply($gifUrl);
81 81
             },
82
-            function (Exception $e) {
82
+            function(Exception $e) {
83 83
                 $this->getLog()->warning($e->getMessage());
84 84
             }
85 85
         );
Please login to merge, or discard this patch.