Update Model and Manager
This commit is contained in:
parent
1c0810e2df
commit
7db6984efe
2 changed files with 2 additions and 2 deletions
|
@ -58,7 +58,7 @@ class Manager
|
|||
*/
|
||||
public function __get(string $name) /* : mixed */
|
||||
{
|
||||
$key = $this->cKey . '&' . $name;
|
||||
$key = $this->cKey . '/' . $name;
|
||||
|
||||
return $this->c->$key->setManager($this);
|
||||
}
|
||||
|
|
|
@ -163,7 +163,7 @@ class Model
|
|||
*/
|
||||
public function __call(string $name, array $args) /* : mixed */
|
||||
{
|
||||
$key = $this->cKey . '*' . $name;
|
||||
$key = $this->cKey . '/' . $name;
|
||||
|
||||
return $this->c->$key->setModel($this)->$name(...$args);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue