@@ -96,7 +96,7 @@ |
||
| 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 | |
@@ -66,7 +66,7 @@ |
||
| 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); |
@@ -70,7 +70,7 @@ |
||
| 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 | /** |
@@ -94,7 +94,7 @@ |
||
| 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 | /** |