Compare commits
6 Commits
Author | SHA1 | Date | |
---|---|---|---|
af801e769f | |||
e9bee7fa48 | |||
c40baaad3f | |||
ac019aac3f | |||
a82fdce64b | |||
86ffb0b84c |
@ -3,6 +3,7 @@ namespace ProVM\Common\Define;
|
||||
|
||||
use \Model as BaseModel;
|
||||
use ProVM\Common\Alias\Model as ModelInterface;
|
||||
use ProVM\Common\Factory\Model as ModelFactory;
|
||||
|
||||
abstract class Model extends BaseModel implements ModelInterface {
|
||||
const SELF_KEY = 'self_key';
|
||||
@ -60,10 +61,10 @@ abstract class Model extends BaseModel implements ModelInterface {
|
||||
], [
|
||||
Model::PARENT_KEY => 'id'
|
||||
]);
|
||||
$parent_table = (new $parent_class())->getTable();
|
||||
$parent_table = (new $parent_model_class())->getTable();
|
||||
return $this->factory
|
||||
->find($parent_model_class)
|
||||
->wherer([
|
||||
->where([
|
||||
[
|
||||
$relation_definitions[Model::PARENT_KEY],
|
||||
$this->{$relation_definitions[Model::SELF_KEY]}
|
||||
@ -81,7 +82,7 @@ abstract class Model extends BaseModel implements ModelInterface {
|
||||
Model::SELF_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)
|
||||
->select([
|
||||
[
|
||||
|
@ -86,7 +86,7 @@ class Model {
|
||||
];
|
||||
$this->conditions []= $cond;
|
||||
}
|
||||
return $this->conditions;
|
||||
return $this;
|
||||
}
|
||||
protected $grouping;
|
||||
public function group($groups): Model {
|
||||
|
Reference in New Issue
Block a user