I wanted to build an object and keep the properties set during the process. Another class will extend the main application object without losing all previous properties.<?phpabstract class application {private $config;private $channel, $controller;public function getConfig(){return $this->config... [...]
Read More