Completed
Push — master ( e05e28...675506 )
by jelmer
05:42
created
src/Slack/Payload.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -96,7 +96,7 @@
 block discarded – undo
96 96
             return;
97 97
         }
98 98
 
99
-        $iconType = 'icon_' . $this->slackConfig->getCustomUser()->getIcon()->getType();
99
+        $iconType = 'icon_'.$this->slackConfig->getCustomUser()->getIcon()->getType();
100 100
         $this->payload[$iconType] = $this->slackConfig->getCustomUser()->getIcon();
101 101
     }
102 102
 
Please login to merge, or discard this patch.
src/Slack/Attachment/ParametersAttachment.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@
 block discarded – undo
66 66
      */
67 67
     private function parseArrayParameter(array $parameter)
68 68
     {
69
-        return "\n" . $this->formatter->arrayToKeyValueList(
69
+        return "\n".$this->formatter->arrayToKeyValueList(
70 70
             array_map(
71 71
                 function ($item) {
72 72
                     return print_r($item, true);
Please login to merge, or discard this patch.
src/Slack/Attachment/TraceAttachment.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -70,7 +70,7 @@
 block discarded – undo
70 70
         ];
71 71
         $text .= $this->formatter->arrayToKeyValueList($info);
72 72
 
73
-        return "\n" . $this->formatter->indent($text);
73
+        return "\n".$this->formatter->indent($text);
74 74
     }
75 75
 
76 76
     /**
Please login to merge, or discard this patch.
src/Slack/StringFormat.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -94,7 +94,7 @@
 block discarded – undo
94 94
      */
95 95
     public function indent($text)
96 96
     {
97
-        return '>' . str_replace("\n", "\n>", $text);
97
+        return '>'.str_replace("\n", "\n>", $text);
98 98
     }
99 99
 
100 100
     /**
Please login to merge, or discard this patch.