diff --git a/src/Config.php b/src/Config.php index a122cbf..ff1a7b6 100644 --- a/src/Config.php +++ b/src/Config.php @@ -130,6 +130,14 @@ public function setProperty($key, $value) return $this; } + public function getProperty($key) + { + if (!isset($this->properties)) { + return null; + } + return $this->properties[$key]; + } + public function validate() { if (!$this->getName()) {