| @@ -14,7 +14,7 @@ | ||
| 14 | 14 | */ | 
| 15 | 15 | public static function toCamelCase(string $input): string | 
| 16 | 16 |      { | 
| 17 | -        return str_replace(' ', '', ucwords(str_replace(['.', '_', '-'], ' ', $input))); | |
| 17 | +        return str_replace(' ', '', ucwords(str_replace([ '.', '_', '-' ], ' ', $input))); | |
| 18 | 18 | } | 
| 19 | 19 | |
| 20 | 20 | /** | 
| @@ -152,7 +152,7 @@ | ||
| 152 | 152 | */ | 
| 153 | 153 | public function __toString(): string | 
| 154 | 154 |      { | 
| 155 | - return (string) $this->tldResult; | |
| 155 | + return (string)$this->tldResult; | |
| 156 | 156 | } | 
| 157 | 157 | |
| 158 | 158 | /** | 
| @@ -106,7 +106,7 @@ | ||
| 106 | 106 | |
| 107 | 107 |          foreach ($files as $file) { | 
| 108 | 108 |              $className = $normalizerNS . str_replace('.php', '', $file->getFilename()); | 
| 109 | - $this->normalizers[] = new $className(); | |
| 109 | + $this->normalizers[ ] = new $className(); | |
| 110 | 110 | } | 
| 111 | 111 | } | 
| 112 | 112 | |