From 86d32d2ceab12d9ed0f8ce06dd4d70c3cf74e12c Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Thu, 27 Oct 2011 16:31:58 +0000 Subject: [PATCH] NULL for syntax-highlightning --- application/qa/class_ApplicationHelper.php | 4 ++-- index.php | 6 ++---- 2 files changed, 4 insertions(+), 6 deletions(-) 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')) { -- 2.39.2