Passed
Push — master ( 696706...d855a0 )
by Enjoys
11:23 queued 09:21
created
src/Attribute.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -119,7 +119,7 @@  discard block
 block discarded – undo
119 119
         } else {
120 120
             $value = explode($this->separator, $value);
121 121
         }
122
-        foreach ((array)$value as $item) {
122
+        foreach ((array) $value as $item) {
123 123
             if (!$this->has($item)) {
124 124
                 $this->values[] = $item;
125 125
             }
@@ -154,7 +154,7 @@  discard block
 block discarded – undo
154 154
 
155 155
         Assert::nullOrScalar($value);
156 156
 
157
-        return ($value === null) ? null : $this->safety((string)$value);
157
+        return ($value === null) ? null : $this->safety((string) $value);
158 158
     }
159 159
 
160 160
     private function safety(string $value): string
Please login to merge, or discard this patch.