diff --git a/app/Http/Api/Controllers/Controller.php b/app/Http/Api/Controllers/Controller.php index c2f85e17..f9677c20 100644 --- a/app/Http/Api/Controllers/Controller.php +++ b/app/Http/Api/Controllers/Controller.php @@ -57,16 +57,4 @@ class Controller extends \Phalcon\Mvc\Controller return $auth->getCurrentUser(); } - protected function getSiteInfo() - { - return $this->getSettings('site'); - } - - protected function getSettings($section) - { - $appService = new AppService(); - - return $appService->getSettings($section); - } - }