| @@ 520-528 (lines=9) @@ | ||
| 517 | * |
|
| 518 | * @return void |
|
| 519 | */ |
|
| 520 | public function run() |
|
| 521 | { |
|
| 522 | $this->monolog->getLogger()->debug('running framework'); |
|
| 523 | ||
| 524 | $runTasks = $this->subjectList->getSubjectForName('ApplicationTasks'); |
|
| 525 | ||
| 526 | $runTasks->run(); |
|
| 527 | $runTasks->sendNotify('bfw_run_done'); |
|
| 528 | } |
|
| 529 | ||
| 530 | /** |
|
| 531 | * Connect to memcache(d) server with the class declared in config file |
|
| @@ 89-98 (lines=10) @@ | ||
| 86 | /** |
|
| 87 | * {@inheritdoc} |
|
| 88 | */ |
|
| 89 | public function run() |
|
| 90 | { |
|
| 91 | $this->monolog->getLogger()->debug('running framework install'); |
|
| 92 | ||
| 93 | $runTasks = $this->subjectList->getSubjectForName('ApplicationTasks'); |
|
| 94 | ||
| 95 | $runTasks->setNotifyPrefix('BfwAppModulesInstall'); |
|
| 96 | $runTasks->run(); |
|
| 97 | $runTasks->sendNotify('bfw_modules_install_done'); |
|
| 98 | } |
|
| 99 | ||
| 100 | /** |
|
| 101 | * Install all modules in the order of the dependency tree. |
|