/**
* 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
/**
* The instances we want to remove after all is done
- *
- * @return void
*/
private static $instances = array (
'cfg', // The configuration system
$languageInstance = LanguageSystem::getInstance();
// Initialize template instance here to avoid warnings in IDE
- $templateInstance = null;
+ $templateInstance = NULL;
// Get response instance
$responseInstance = ApplicationHelper::getInstance()->getResponseInstance();
} // END - foreach
// Init application instance
- $applicationInstance = null;
+ $applicationInstance = NULL;
// Is the class there?
if (class_exists('ApplicationHelper')) {