diff --git a/core/Extension.php b/core/Extension.php index c3fd9e134..89e0b17a7 100644 --- a/core/Extension.php +++ b/core/Extension.php @@ -26,6 +26,15 @@ abstract class Extension extends Object { function setOwner(Object $owner) { $this->owner = $owner; } + + /** + * Returns the owner of this decorator + * + * @return Object + */ + public function getOwner() { + return $this->owner; + } } ?> \ No newline at end of file