Convert variable names to camel case

[MAILPOET-1796]
This commit is contained in:
Jan Jakeš
2020-01-09 15:02:58 +01:00
committed by Jan Jakeš
parent f5da704106
commit 54549ff037
687 changed files with 15890 additions and 15887 deletions

View File

@@ -34,8 +34,8 @@ abstract class SimpleWorker implements CronWorkerInterface {
if ($wp === null) $wp = ContainerWrapper::getInstance()->get(WPFunctions::class);
$this->wp = $wp;
$this->cron_helper = ContainerWrapper::getInstance()->get(CronHelper::class);
$this->cron_worker_scheduler = ContainerWrapper::getInstance()->get(CronWorkerScheduler::class);
$this->cronHelper = ContainerWrapper::getInstance()->get(CronHelper::class);
$this->cronWorkerScheduler = ContainerWrapper::getInstance()->get(CronWorkerScheduler::class);
}
public function getTaskType() {
@@ -47,7 +47,7 @@ abstract class SimpleWorker implements CronWorkerInterface {
}
public function schedule() {
$this->cron_worker_scheduler->schedule(static::TASK_TYPE, $this->getNextRunDate());
$this->cronWorkerScheduler->schedule(static::TASK_TYPE, $this->getNextRunDate());
}
public function checkProcessingRequirements() {