@@ -28,7 +28,6 @@ |
||
| 28 | 28 | |
| 29 | 29 | use ntentan\atiaa\Driver; |
| 30 | 30 | use ntentan\nibii\exceptions\ModelNotFoundException; |
| 31 | -use ntentan\nibii\exceptions\NibiiException; |
|
| 32 | 31 | use ntentan\utils\Text; |
| 33 | 32 | |
| 34 | 33 | /** |
@@ -240,8 +240,8 @@ discard block |
||
| 240 | 240 | public function doFilter() |
| 241 | 241 | { |
| 242 | 242 | $arguments = func_get_args(); |
| 243 | - if(count($arguments) == 1 && is_array($arguments[0])) { |
|
| 244 | - foreach($arguments[0] as $field => $value) { |
|
| 243 | + if (count($arguments) == 1 && is_array($arguments[0])) { |
|
| 244 | + foreach ($arguments[0] as $field => $value) { |
|
| 245 | 245 | $this->getQueryParameters()->addFilter($field, $value); |
| 246 | 246 | } |
| 247 | 247 | } else { |
@@ -349,7 +349,7 @@ discard block |
||
| 349 | 349 | |
| 350 | 350 | public function doWith($model) |
| 351 | 351 | { |
| 352 | - if(!isset($this->wrapper->getDescription()->getRelationships()[$model])) { |
|
| 352 | + if (!isset($this->wrapper->getDescription()->getRelationships()[$model])) { |
|
| 353 | 353 | throw new ModelNotFoundException("Could not find related model [$model]"); |
| 354 | 354 | } |
| 355 | 355 | $relationship = $this->wrapper->getDescription()->getRelationships()[$model]; |
@@ -26,10 +26,10 @@ |
||
| 26 | 26 | |
| 27 | 27 | namespace ntentan\nibii\relationships; |
| 28 | 28 | |
| 29 | -use ntentan\nibii\exceptions\FieldNotFoundException; |
|
| 29 | +use ntentan\nibii\ORMContext; |
|
| 30 | 30 | use ntentan\nibii\Relationship; |
| 31 | +use ntentan\nibii\exceptions\FieldNotFoundException; |
|
| 31 | 32 | use ntentan\utils\Text; |
| 32 | -use ntentan\nibii\ORMContext; |
|
| 33 | 33 | |
| 34 | 34 | /** |
| 35 | 35 | * Represents a one to many belongs to relationship. |
@@ -43,10 +43,10 @@ discard block |
||
| 43 | 43 | |
| 44 | 44 | public function prepareQuery($data) |
| 45 | 45 | { |
| 46 | - if(!array_key_exists($this->options['local_key'], $data)) { |
|
| 46 | + if (!array_key_exists($this->options['local_key'], $data)) { |
|
| 47 | 47 | throw new FieldNotFoundException("Field {$this->options['local_key']} not found for belongs to relationship query."); |
| 48 | 48 | } |
| 49 | - if(!isset($data[$this->options['local_key']])) { |
|
| 49 | + if (!isset($data[$this->options['local_key']])) { |
|
| 50 | 50 | return null; |
| 51 | 51 | } |
| 52 | 52 | $query = $this->getQuery(); |
@@ -69,7 +69,7 @@ discard block |
||
| 69 | 69 | $this->options['foreign_key'] = $model->getDescription()->getPrimaryKey()[0]; |
| 70 | 70 | } |
| 71 | 71 | if ($this->options['local_key'] == null) { |
| 72 | - $this->options['local_key'] = Text::singularize($table) . '_id'; |
|
| 72 | + $this->options['local_key'] = Text::singularize($table).'_id'; |
|
| 73 | 73 | } |
| 74 | 74 | } |
| 75 | 75 | |