@@ -24,7 +24,7 @@ discard block |
||
24 | 24 | { |
25 | 25 | |
26 | 26 | |
27 | - if (! Filesystem::has($this->getDirLocation())) { |
|
27 | + if (!Filesystem::has($this->getDirLocation())) { |
|
28 | 28 | Filesystem::createDir($this->getDirLocation()); |
29 | 29 | } |
30 | 30 | |
@@ -106,7 +106,7 @@ discard block |
||
106 | 106 | */ |
107 | 107 | public function rename(string $id, string $new_id) : bool |
108 | 108 | { |
109 | - if (! Filesystem::has($this->getFileLocation($new_id))) { |
|
109 | + if (!Filesystem::has($this->getFileLocation($new_id))) { |
|
110 | 110 | return rename($this->getFileLocation($id), $this->getFileLocation($new_id)); |
111 | 111 | } |
112 | 112 | |
@@ -148,7 +148,7 @@ discard block |
||
148 | 148 | { |
149 | 149 | $fieldset_file = $this->getFileLocation($id); |
150 | 150 | |
151 | - if (! Filesystem::has($fieldset_file)) { |
|
151 | + if (!Filesystem::has($fieldset_file)) { |
|
152 | 152 | return Filesystem::write($fieldset_file, flextype('serializers')->yaml()->encode($data)); |
153 | 153 | } |
154 | 154 |