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

@@ -13,8 +13,8 @@ class AuthorizedSendingEmailsCheck extends SimpleWorker {
/** @var AuthorizedEmailsController */
private $authorized_emails_controller;
public function __construct(AuthorizedEmailsController $authorized_emails_controller) {
$this->authorized_emails_controller = $authorized_emails_controller;
public function __construct(AuthorizedEmailsController $authorizedEmailsController) {
$this->authorizedEmailsController = $authorizedEmailsController;
parent::__construct();
}
@@ -23,7 +23,7 @@ class AuthorizedSendingEmailsCheck extends SimpleWorker {
}
public function processTaskStrategy(ScheduledTask $task, $timer) {
$this->authorized_emails_controller->checkAuthorizedEmailAddresses();
$this->authorizedEmailsController->checkAuthorizedEmailAddresses();
return true;
}
}