Passed
Push — main ( 2103d0...92ecd0 )
by BRUNO
07:58
created
src/ModelAbstract.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
         }
92 92
 
93 93
         return $classname . ' {' . implode(', ', array_map(
94
-                function ($p_0) use ($data) {
94
+                function($p_0) use ($data) {
95 95
                     $p_0->setAccessible(true);
96 96
 
97 97
                     return $p_0->getName() . ': ' . $p_0->getValue($data);
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
      */
111 111
     public function __get($name): string
112 112
     {
113
-        return $this->{$name} ?? ($this->dataArray[$name]?? "");
113
+        return $this->{$name} ?? ($this->dataArray[$name] ?? "");
114 114
     }
115 115
 
116 116
     /**
Please login to merge, or discard this patch.