@@ -28,7 +28,7 @@ |
||
28 | 28 | */ |
29 | 29 | public function wrapMessage(string $message): string |
30 | 30 | { |
31 | - return $this->getPrefix() . $message . $this->getPostfix(); |
|
31 | + return $this->getPrefix().$message.$this->getPostfix(); |
|
32 | 32 | } |
33 | 33 | |
34 | 34 | /** |
@@ -19,7 +19,7 @@ |
||
19 | 19 | */ |
20 | 20 | public static function create(string $name = Templates::BASE): TemplateInterface |
21 | 21 | { |
22 | - $class = __NAMESPACE__ . '\\Templates\\' . ucwords($name) . 'Template'; |
|
22 | + $class = __NAMESPACE__.'\\Templates\\'.ucwords($name).'Template'; |
|
23 | 23 | |
24 | 24 | if (class_exists($class)) { |
25 | 25 | return new $class(); |