Completed
Push — master ( bd434e...913de5 )
by
unknown
34s queued 15s
created
src/Event/ValueObjects/EventStatusType.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
     private function __construct(string $value)
30 30
     {
31 31
         if (!\in_array($value, self::ALLOWED_VALUES, true)) {
32
-            throw new InvalidArgumentException('Status does not support the value "' . $value . '"');
32
+            throw new InvalidArgumentException('Status does not support the value "'.$value.'"');
33 33
         }
34 34
         $this->value = $value;
35 35
     }
Please login to merge, or discard this patch.
src/Event/ValueObjects/EventStatus.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@
 block discarded – undo
69 69
      */
70 70
     private function ensureTranslationsAreUnique(array $eventStatusReasons): void
71 71
     {
72
-        $languageCodes = \array_map(static function (EventStatusReason $reason) {
72
+        $languageCodes = \array_map(static function(EventStatusReason $reason) {
73 73
             return $reason->getLanguage()->getCode();
74 74
         }, $eventStatusReasons);
75 75
 
Please login to merge, or discard this patch.