@@ -82,7 +82,7 @@ discard block |
||
| 82 | 82 | $name = $this->default; |
| 83 | 83 | } |
| 84 | 84 | |
| 85 | - if (!isset(static::$orderMap[ $name ])) { |
|
| 85 | + if (!isset(static::$orderMap[$name])) { |
|
| 86 | 86 | throw new \InvalidArgumentException(sprintf( |
| 87 | 87 | 'Unknown status name "%s" for "%s"', |
| 88 | 88 | $name, static::class |
@@ -90,6 +90,6 @@ discard block |
||
| 90 | 90 | } |
| 91 | 91 | |
| 92 | 92 | $this->name = $name; |
| 93 | - $this->order = static::$orderMap[ $name ]; |
|
| 93 | + $this->order = static::$orderMap[$name]; |
|
| 94 | 94 | } |
| 95 | 95 | } |
| 96 | 96 | \ No newline at end of file |