From: Roland Häder Date: Thu, 27 Oct 2011 16:31:58 +0000 (+0000) Subject: NULL for syntax-highlightning X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=86d32d2ceab12d9ed0f8ce06dd4d70c3cf74e12c;p=qa.git NULL for syntax-highlightning --- diff --git a/application/qa/class_ApplicationHelper.php b/application/qa/class_ApplicationHelper.php index 41dfb5b..ae7decd 100644 --- a/application/qa/class_ApplicationHelper.php +++ b/application/qa/class_ApplicationHelper.php @@ -58,12 +58,12 @@ class ApplicationHelper extends BaseApplication implements ManageableApplication /** * An instance of a controller */ - private $controllerInstance = null; + private $controllerInstance = NULL; /** * An instance of this class */ - private static $thisInstance = null; + private static $thisInstance = NULL; /** * Protected constructor diff --git a/index.php b/index.php index 3950334..fea5027 100644 --- a/index.php +++ b/index.php @@ -34,8 +34,6 @@ final class ApplicationEntryPoint { /** * The instances we want to remove after all is done - * - * @return void */ private static $instances = array ( 'cfg', // The configuration system @@ -88,7 +86,7 @@ final class ApplicationEntryPoint { $languageInstance = LanguageSystem::getInstance(); // Initialize template instance here to avoid warnings in IDE - $templateInstance = null; + $templateInstance = NULL; // Get response instance $responseInstance = ApplicationHelper::getInstance()->getResponseInstance(); @@ -130,7 +128,7 @@ final class ApplicationEntryPoint { } // END - foreach // Init application instance - $applicationInstance = null; + $applicationInstance = NULL; // Is the class there? if (class_exists('ApplicationHelper')) {