@@ -35,7 +35,7 @@ |
||
35 | 35 | */ |
36 | 36 | public function __set(string $name, $value) |
37 | 37 | { |
38 | - if (! isset($this->properties[$name])) { |
|
38 | + if (!isset($this->properties[$name])) { |
|
39 | 39 | $this->properties[$name] = $value; |
40 | 40 | } else { |
41 | 41 | if (is_array($this->properties[$name])) { |
@@ -28,7 +28,7 @@ |
||
28 | 28 | $this->path = $path; |
29 | 29 | |
30 | 30 | clearstatcache(); |
31 | - if (! file_exists($path)) { |
|
31 | + if (!file_exists($path)) { |
|
32 | 32 | touch($path); |
33 | 33 | } else { |
34 | 34 | $this->values = (array)json_decode(file_get_contents($path)); |