diff --git a/src/flextype/Support/Container.php b/src/flextype/Support/Container.php new file mode 100644 index 00000000..9478ea67 --- /dev/null +++ b/src/flextype/Support/Container.php @@ -0,0 +1,36 @@ +container = $container; + } + + /** + * __get + */ + public function __get($property) + { + if ($this->container->{$property}) { + return $this->container->{$property}; + } + } +}