diff --git a/src/Auth/Model.php b/src/Auth/Model.php index 03932ab..f91efdf 100644 --- a/src/Auth/Model.php +++ b/src/Auth/Model.php @@ -117,4 +117,9 @@ public function __set($name, $value) { $this->dataToSave[$name] = $value; } + + public function __call($name, $arguments) + { + return $this->get()->$name(...$arguments); + } }