Fix Groups manager
This commit is contained in:
parent
9010943966
commit
3c2ee8f1ae
1 changed files with 2 additions and 2 deletions
|
@ -75,7 +75,7 @@ class Groups extends Manager
|
|||
*/
|
||||
public function update(Group $group): Group
|
||||
{
|
||||
return $this->Save->update($group);
|
||||
return $this->save->update($group);
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -83,7 +83,7 @@ class Groups extends Manager
|
|||
*/
|
||||
public function insert(Group $group): int
|
||||
{
|
||||
$id = $this->Save->insert($group);
|
||||
$id = $this->save->insert($group);
|
||||
$this->set($id, $group);
|
||||
|
||||
return $id;
|
||||
|
|
Loading…
Add table
Reference in a new issue