Completed
Pull Request — master (#351)
by
unknown
03:37 queued 27s
created
src/Picqer/Financials/Exact/Model.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -206,7 +206,7 @@  discard block
 block discarded – undo
206 206
      */
207 207
     public function exists()
208 208
     {
209
-        if (! array_key_exists($this->primaryKey, $this->attributes)) {
209
+        if ( ! array_key_exists($this->primaryKey, $this->attributes)) {
210 210
             return false;
211 211
         }
212 212
 
@@ -231,7 +231,7 @@  discard block
 block discarded – undo
231 231
 
232 232
                 $attributes[$attribute] = [];
233 233
                 foreach ($collection as $value) {
234
-                    if (! empty($value->deferred)) {
234
+                    if ( ! empty($value->deferred)) {
235 235
                         $value->attributes = array_merge($value->attributes, $value->deferred);
236 236
                     }
237 237
 
Please login to merge, or discard this patch.
tests/EntityTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -254,7 +254,7 @@
 block discarded – undo
254 254
         $this->performEntityTest(\Picqer\Financials\Exact\PurchaseOrderLine::class);
255 255
     }
256 256
 
257
-    public function testRevenueListEntity(){
257
+    public function testRevenueListEntity() {
258 258
         $this->performEntityTest(\Picqer\Financials\Exact\RevenueList::class);
259 259
     }
260 260
 
Please login to merge, or discard this patch.