diff options
Diffstat (limited to 'app/Integration/Base.php')
-rw-r--r-- | app/Integration/Base.php | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/app/Integration/Base.php b/app/Integration/Base.php new file mode 100644 index 00000000..babf8c8f --- /dev/null +++ b/app/Integration/Base.php @@ -0,0 +1,49 @@ +<?php + +namespace Integration; + +use Pimple\Container; + +/** + * Base class + * + * @package integration + * @author Frederic Guillot + * + * @property \Model\Task $task + * @property \Model\TaskFinder $taskFinder + * @property \Model\User $user + */ +abstract class Base +{ + /** + * Container instance + * + * @access protected + * @var \Pimple\Container + */ + protected $container; + + /** + * Constructor + * + * @access public + * @param \Pimple\Container $container + */ + public function __construct(Container $container) + { + $this->container = $container; + } + + /** + * Load automatically class from the container + * + * @access public + * @param string $name + * @return mixed + */ + public function __get($name) + { + return $this->container[$name]; + } +} |