X-Git-Url: https://git.mxchange.org/?p=core.git;a=blobdiff_plain;f=inc%2Fclasses%2Fmain%2Foutput%2Fclass_ConsoleOutput.php;h=544cd23ba7729493ab2b7ac3e53ea30ff3c79976;hp=a03b9512a76c758b1b3b8b7a8f9eb1db5eb0b0fc;hb=a3fa89c7cbc54491fc74f13db0927d14acf550c8;hpb=d42a36e7172e079d2ea3328d320e5be115b8bddb diff --git a/inc/classes/main/output/class_ConsoleOutput.php b/inc/classes/main/output/class_ConsoleOutput.php index a03b9512..544cd23b 100644 --- a/inc/classes/main/output/class_ConsoleOutput.php +++ b/inc/classes/main/output/class_ConsoleOutput.php @@ -44,7 +44,7 @@ class ConsoleOutput extends BaseFrameworkSystem implements OutputStreamer { * @param $contentType A valid content-type * @return $debugInstance An instance of this middleware class */ - public final static function createConsoleOutput ($contentType) { + public static final function createConsoleOutput ($contentType) { // Cast the content-type to string $contentType = (string) $contentType; $contentType = trim($contentType); @@ -69,7 +69,7 @@ class ConsoleOutput extends BaseFrameworkSystem implements OutputStreamer { * * @return $consoleInstance An instance of this class */ - public final static function getInstance() { + public static final function getInstance() { if (is_null(self::$consoleInstance)) { $contentType = FrameworkConfiguration::getInstance()->getConfigEntry('web_content_type'); self::$consoleInstance = ConsoleOutput::createConsoleOutput($contentType);