@@ -108,7 +108,7 @@ |
||
| 108 | 108 | |
| 109 | 109 | $result = $this->connection()->get($this->url(), $request, $headers); |
| 110 | 110 | |
| 111 | - if (! empty($divisionId)) { |
|
| 111 | + if ( ! empty($divisionId)) { |
|
| 112 | 112 | $this->connection()->setDivision($originalDivision); // Restore division |
| 113 | 113 | } |
| 114 | 114 | |
@@ -206,7 +206,7 @@ discard block |
||
| 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 |
||
| 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 | |
@@ -59,9 +59,9 @@ |
||
| 59 | 59 | 'SendOutputBasedOnAccount', |
| 60 | 60 | ]; |
| 61 | 61 | |
| 62 | - /** |
|
| 63 | - * @return $this |
|
| 64 | - */ |
|
| 62 | + /** |
|
| 63 | + * @return $this |
|
| 64 | + */ |
|
| 65 | 65 | public function save() |
| 66 | 66 | { |
| 67 | 67 | $this->fill($this->insert()); |
@@ -43,9 +43,9 @@ |
||
| 43 | 43 | 'SenderEmailAddress', |
| 44 | 44 | ]; |
| 45 | 45 | |
| 46 | - /** |
|
| 47 | - * @return $this |
|
| 48 | - */ |
|
| 46 | + /** |
|
| 47 | + * @return $this |
|
| 48 | + */ |
|
| 49 | 49 | public function save() |
| 50 | 50 | { |
| 51 | 51 | $this->fill($this->insert()); |
@@ -19,11 +19,11 @@ |
||
| 19 | 19 | use Query\Findable; |
| 20 | 20 | use Persistance\Storable; |
| 21 | 21 | |
| 22 | - /** |
|
| 23 | - * The fillable properties for the StockPosition model. |
|
| 24 | - * |
|
| 25 | - * @var string[] |
|
| 26 | - */ |
|
| 22 | + /** |
|
| 23 | + * The fillable properties for the StockPosition model. |
|
| 24 | + * |
|
| 25 | + * @var string[] |
|
| 26 | + */ |
|
| 27 | 27 | protected $fillable = [ |
| 28 | 28 | 'InStock', |
| 29 | 29 | 'ItemId', |