type->isProduction(); } public function isDevelopment(): bool { return $this->type->isDevelopment(); } public function isStaging(): bool { return $this->type->isStaging(); } public function isProductionLike(): bool { return $this->type->isProductionLike(); } public function isDebugEnabled(): bool { return $this->debug || $this->type->isDebugEnabled(); } public function isDebug(): bool { return $this->isDebugEnabled(); } }