@@ -46,7 +46,7 @@ |
||
| 46 | 46 | * If a message is not a string, it will return var export to generate |
| 47 | 47 | * a returnable string from a message. |
| 48 | 48 | * |
| 49 | - * @param mixed $message |
|
| 49 | + * @param string $message |
|
| 50 | 50 | * @return string |
| 51 | 51 | * @since 1.0.22 |
| 52 | 52 | */ |
@@ -40,7 +40,7 @@ discard block |
||
| 40 | 40 | { |
| 41 | 41 | if ($this->verbose) { |
| 42 | 42 | $message = $this->printableMessage($message); |
| 43 | - $this->output(!empty($section) ? $section . ': ' . $message : $message); |
|
| 43 | + $this->output(!empty($section) ? $section.': '.$message : $message); |
|
| 44 | 44 | } |
| 45 | 45 | } |
| 46 | 46 | |
@@ -118,7 +118,7 @@ discard block |
||
| 118 | 118 | $name = substr($name, 0, -(strlen($suffix))); |
| 119 | 119 | } |
| 120 | 120 | |
| 121 | - return $name . $suffix; |
|
| 121 | + return $name.$suffix; |
|
| 122 | 122 | } |
| 123 | 123 | |
| 124 | 124 | /** |