@@ -21,14 +21,14 @@ |
||
| 21 | 21 | */ |
| 22 | 22 | public function __construct(string $classname) |
| 23 | 23 | { |
| 24 | - if (! class_exists($classname)) { |
|
| 24 | + if (!class_exists($classname)) { |
|
| 25 | 25 | throw IntlSortException::classDoesNotExist($classname); |
| 26 | 26 | } |
| 27 | 27 | |
| 28 | 28 | /** @var array<string> $interfaces */ |
| 29 | 29 | $interfaces = class_implements($classname); |
| 30 | 30 | |
| 31 | - if (! in_array(CollatorConstructor::class, $interfaces, true)) { |
|
| 31 | + if (!in_array(CollatorConstructor::class, $interfaces, true)) { |
|
| 32 | 32 | throw IntlSortException::doesNotImplementComparable($classname); |
| 33 | 33 | } |
| 34 | 34 | |