From 0b05aff4c9236d53261cc8c1e7d467a700c1658d Mon Sep 17 00:00:00 2001 From: sbyrd Date: Sun, 29 Nov 2020 16:05:10 -0500 Subject: [PATCH] get host controller --- image.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/image.php b/image.php index 43748e0..6e4e22a 100644 --- a/image.php +++ b/image.php @@ -29,7 +29,7 @@ class image extends objectStructs $this->config = new imageConfig($vars['imageConfig']); } - public function getHostController() + public function getHostControllerName() { if (isset($this->annotations->hostController)) return $this->annotations->hostController; @@ -37,7 +37,7 @@ class image extends objectStructs return false; } - public function getClientController() + public function getClientControllerName() { if (isset($this->annotations->clientController)) return $this->annotations->clientController;