Fix Forums manager

This commit is contained in:
Visman 2021-12-03 15:27:22 +07:00
parent 69a182303e
commit 9010943966

View file

@ -105,7 +105,7 @@ class Forums extends Manager
*/
public function update(Forum $forum): Forum
{
return $this->Save->update($forum);
return $this->save->update($forum);
}
/**
@ -113,7 +113,7 @@ class Forums extends Manager
*/
public function insert(Forum $forum): int
{
$id = $this->Save->insert($forum);
$id = $this->save->insert($forum);
$this->set($id, $forum);
return $id;