function addExtraCityFilters ();
/**
- * Activates the hub by doing some final preparation and setting
- * $hubIsActive to TRUE.
+ * Activates the city daemon by doing some final preparation and setting
+ * $cityIsActive to TRUE.
*
* @param $requestInstance A Requestable class
* @param $responseInstance A Responseable class
* @return void
*/
- function activateCity (Requestable $requestInstance, Responseable $responseInstance);
+ function activateCityDaemon (Requestable $requestInstance, Responseable $responseInstance);
/**
* Updates/refreshes city data (e.g. state).
* @param $responseInstance A Responseable class
* @return void
*/
- public function activateCity (Requestable $requestInstance, Responseable $responseInstance) {
+ public function activateCityDaemon (Requestable $requestInstance, Responseable $responseInstance) {
// Get the controller here
$controllerInstance = Registry::getRegistry()->getInstance('controller');
/*
* -------------------------- City activation --------------------------
- * Activates the city by doing some final preparation steps and setting
- * the attribute $hubIsActive to TRUE.
+ * Activates the city daemon by doing some final preparation steps and
+ * setting the attribute $cityIsActive to TRUE.
*/
- $cityInstance->activateCity($requestInstance, $responseInstance);
+ $cityInstance->activateCityDaemon($requestInstance, $responseInstance);
// Get task handler instance
$handlerInstance = Registry::getRegistry()->getInstance('task_handler');