From 5f3efcf814d42f09687fe47e7cadb695066413cc Mon Sep 17 00:00:00 2001 From: Aldarien Date: Tue, 24 Dec 2019 12:54:19 -0300 Subject: [PATCH] Se agregar setContainer --- common/Alias/Model.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/common/Alias/Model.php b/common/Alias/Model.php index 88ef3c9..2a5b650 100644 --- a/common/Alias/Model.php +++ b/common/Alias/Model.php @@ -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; + } } ?>