Se agregar setContainer

This commit is contained in:
2019-12-24 12:54:19 -03:00
parent fafe57599e
commit 5f3efcf814

View File

@ -83,5 +83,9 @@ class Model extends \Model
}
return call_user_func_array([$this, $str], $args);
}
protected $container;
public function setContainer($container) {
$this->container = $container;
}
}
?>