diff options
author | Frederic Guillot <fred@kanboard.net> | 2015-05-24 16:02:25 -0400 |
---|---|---|
committer | Frederic Guillot <fred@kanboard.net> | 2015-05-24 16:02:25 -0400 |
commit | eeac2329baab1fdae7cbf6c707ed2ffd8beb4c1b (patch) | |
tree | 511c2fe47f8fbb1ea90e59e7a7a7f5e3530aa9ed /app/Action | |
parent | 65e9e5d1bed9f88ecfd43eb2c1e780a7c22c151f (diff) |
Helpers refactoring
Diffstat (limited to 'app/Action')
-rw-r--r-- | app/Action/Base.php | 23 |
1 files changed, 1 insertions, 22 deletions
diff --git a/app/Action/Base.php b/app/Action/Base.php index 0d8bd565..f29e9323 100644 --- a/app/Action/Base.php +++ b/app/Action/Base.php @@ -10,17 +10,8 @@ use Pimple\Container; * * @package action * @author Frederic Guillot - * - * @property \Model\UserSession $userSession - * @property \Model\Comment $comment - * @property \Model\Task $task - * @property \Model\TaskCreation $taskCreation - * @property \Model\TaskModification $taskModification - * @property \Model\TaskDuplication $taskDuplication - * @property \Model\TaskFinder $taskFinder - * @property \Model\TaskStatus $taskStatus */ -abstract class Base +abstract class Base extends \Core\Base { /** * Flag for called listener @@ -136,18 +127,6 @@ abstract class Base } /** - * Load automatically models - * - * @access public - * @param string $name Model name - * @return mixed - */ - public function __get($name) - { - return $this->container[$name]; - } - - /** * Set an user defined parameter * * @access public |