FIX: nombres de variables
This commit is contained in:
@ -61,10 +61,10 @@ abstract class Model extends BaseModel implements ModelInterface {
|
|||||||
], [
|
], [
|
||||||
Model::PARENT_KEY => 'id'
|
Model::PARENT_KEY => 'id'
|
||||||
]);
|
]);
|
||||||
$parent_table = (new $parent_class())->getTable();
|
$parent_table = (new $parent_model_class())->getTable();
|
||||||
return $this->factory
|
return $this->factory
|
||||||
->find($parent_model_class)
|
->find($parent_model_class)
|
||||||
->wherer([
|
->where([
|
||||||
[
|
[
|
||||||
$relation_definitions[Model::PARENT_KEY],
|
$relation_definitions[Model::PARENT_KEY],
|
||||||
$this->{$relation_definitions[Model::SELF_KEY]}
|
$this->{$relation_definitions[Model::SELF_KEY]}
|
||||||
@ -82,7 +82,7 @@ abstract class Model extends BaseModel implements ModelInterface {
|
|||||||
Model::SELF_KEY => 'id',
|
Model::SELF_KEY => 'id',
|
||||||
Model::SIBLING_KEY => 'id'
|
Model::SIBLING_KEY => 'id'
|
||||||
]);
|
]);
|
||||||
$sibling_table = (new $sibling_class())->getTable();
|
$sibling_table = (new $sibling_model_class())->getTable();
|
||||||
return $this->find($sibling_model_class)
|
return $this->find($sibling_model_class)
|
||||||
->select([
|
->select([
|
||||||
[
|
[
|
||||||
|
Reference in New Issue
Block a user