@@ -70,7 +70,7 @@ |
||
| 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; |
@@ -21,6 +21,6 @@ |
||
| 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 | } |
@@ -23,8 +23,8 @@ |
||
| 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 | } |