*/ trait IsDebugOn { protected $isDebug = null; public function isDebugOn() { if ($this->isDebug === null) { $addon = ServiceLocator::call(Config::class); $this->isDebug = (bool)((int)$addon->getConfigValue('debug', "0")); } return $this->isDebug; } }