* @return void
*/
public final function entryPoint () {
+ // Set this application in registry
+ Registry::getRegistry()->addInstance('app', $this);
+
// Create a new request object
$requestInstance = ObjectFactory::createObjectByName('HttpRequest');
// Is the instance there?
if (is_null(self::$thisInstance)) {
self::$thisInstance = new ApplicationHelper();
- }
+ } // END - if
// Return the instance
return self::$thisInstance;
* @return void
*/
public final function entryPoint () {
+ // Set this application in registry
+ Registry::getRegistry()->addInstance('app', $this);
+
// Analyze the environment for type of response/request
$type = ConsoleTools::analyzeEnvironmentForType();
$classType = ConsoleTools::analyzeEnvironmentForClassType();