Passed
Push — master ( 4679e4...4370a4 )
by Olivier
11:52
created
lib/SerializableTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -70,7 +70,7 @@
 block discarded – undo
70 70
         }
71 71
 
72 72
         foreach (AccessorReflection::resolve_facade_properties($this) as $name => $property) {
73
-            $properties[$name] = "\x00" . $property->class . "\x00" . $name;
73
+            $properties[$name] = "\x00".$property->class."\x00".$name;
74 74
         }
75 75
 
76 76
         return $properties;
Please login to merge, or discard this patch.
lib/FormatAsSnake.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,6 +21,6 @@
 block discarded – undo
21 21
         string $type,
22 22
         string $lazy = HasAccessor::ACCESSOR_IS_NOT_LAZY
23 23
     ): string {
24
-        return ($lazy ? $lazy . '_' : '') . $type . '_' . $property;
24
+        return ($lazy ? $lazy.'_' : '').$type.'_'.$property;
25 25
     }
26 26
 }
Please login to merge, or discard this patch.
lib/FormatAsCamel.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -23,8 +23,8 @@
 block discarded – undo
23 23
         string $type,
24 24
         string $lazy = HasAccessor::ACCESSOR_IS_NOT_LAZY
25 25
     ): string {
26
-        $format = $type . ucfirst($property);
26
+        $format = $type.ucfirst($property);
27 27
 
28
-        return $lazy ? $lazy . ucfirst($format) : $format;
28
+        return $lazy ? $lazy.ucfirst($format) : $format;
29 29
     }
30 30
 }
Please login to merge, or discard this patch.