Test Setup Failed
Branch master (5e5be9)
by José
07:27
created
src/SimpleAnnotation/AnnotationParsed.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
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])) {
Please login to merge, or discard this patch.
src/SimpleAnnotation/Concerns/Cache/FileCache.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
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));
Please login to merge, or discard this patch.