Completed
Pull Request — master (#478)
by Luc
02:31
created
src/Event/ValueObjects/Status.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
     private function __construct(string $value)
21 21
     {
22 22
         if (!\in_array($value, $this->getAllowedValues())) {
23
-            throw new InvalidArgumentException('Status does not support the value "' . $value . '"');
23
+            throw new InvalidArgumentException('Status does not support the value "'.$value.'"');
24 24
         }
25 25
         $this->value = $value;
26 26
     }
Please login to merge, or discard this patch.