Passed
Pull Request — master (#427)
by
unknown
01:47
created
src/Picqer/Financials/Exact/Model.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -128,7 +128,7 @@  discard block
 block discarded – undo
128 128
         return in_array($key, $this->fillable);
129 129
     }
130 130
 
131
-    public function getFillable(){
131
+    public function getFillable() {
132 132
         return $this->fillable;
133 133
     }
134 134
 
@@ -224,7 +224,7 @@  discard block
 block discarded – undo
224 224
      */
225 225
     public function exists()
226 226
     {
227
-        if (! array_key_exists($this->primaryKey, $this->attributes)) {
227
+        if ( ! array_key_exists($this->primaryKey, $this->attributes)) {
228 228
             return false;
229 229
         }
230 230
 
@@ -249,7 +249,7 @@  discard block
 block discarded – undo
249 249
 
250 250
                 $attributes[$attribute] = [];
251 251
                 foreach ($collection as $value) {
252
-                    if (! empty($value->deferred)) {
252
+                    if ( ! empty($value->deferred)) {
253 253
                         $value->attributes = array_merge($value->attributes, $value->deferred);
254 254
                     }
255 255
 
Please login to merge, or discard this patch.