@@ -176,7 +176,7 @@ discard block |
||
176 | 176 | // Iterate through the properties |
177 | 177 | foreach ($properties as $property => $value) { |
178 | 178 | if (property_exists($this, $property)) { |
179 | - if (! isset(static::$originalProperties[$property])) { |
|
179 | + if (!isset(static::$originalProperties[$property])) { |
|
180 | 180 | static::$originalProperties[$property] = $value; |
181 | 181 | } |
182 | 182 | |
@@ -264,7 +264,7 @@ discard block |
||
264 | 264 | $type = $propertyTypes[$property] ?? null; |
265 | 265 | |
266 | 266 | // If there is no type specified just return the value |
267 | - if (null === $type || ! is_string($value)) { |
|
267 | + if (null === $type || !is_string($value)) { |
|
268 | 268 | return $value; |
269 | 269 | } |
270 | 270 |
@@ -128,7 +128,7 @@ |
||
128 | 128 | foreach ($properties as $property => $value) { |
129 | 129 | // Ensure the property exists before blindly setting |
130 | 130 | if (property_exists($this, $property)) { |
131 | - if (! isset(static::$originalProperties[$property])) { |
|
131 | + if (!isset(static::$originalProperties[$property])) { |
|
132 | 132 | static::$originalProperties[$property] = $value; |
133 | 133 | } |
134 | 134 |