@@ -47,7 +47,7 @@ |
||
| 47 | 47 | public function __construct($status = self::NONPUBLIC) |
| 48 | 48 | { |
| 49 | 49 | if (!isset(static::$orderMap[$status])) { |
| 50 | - throw new \DomainException('Unknown status: ' . $status); |
|
| 50 | + throw new \DomainException('Unknown status: '.$status); |
|
| 51 | 51 | } |
| 52 | 52 | |
| 53 | 53 | $this->name = $status; |
@@ -16,9 +16,9 @@ |
||
| 16 | 16 | interface StatusInterface extends EntityInterface |
| 17 | 17 | { |
| 18 | 18 | |
| 19 | - const NONPUBLIC = /*@translate*/ 'private'; |
|
| 19 | + const NONPUBLIC = /*@translate*/ 'private'; |
|
| 20 | 20 | |
| 21 | - const PUBLIC_TO_ALL = /*@translate*/ 'public to all'; |
|
| 21 | + const PUBLIC_TO_ALL = /*@translate*/ 'public to all'; |
|
| 22 | 22 | |
| 23 | 23 | public function __construct($status = self::NONPUBLIC); |
| 24 | 24 | |