Convert property names to camel case

[MAILPOET-1796]
This commit is contained in:
Jan Jakeš
2020-01-09 15:06:18 +01:00
committed by Jan Jakeš
parent 54549ff037
commit 8c848cfa28
329 changed files with 793 additions and 792 deletions

View File

@ -12,7 +12,7 @@ class Subscription {
const ACTION_CONFIRM = 'confirm';
const ACTION_MANAGE = 'manage';
const ACTION_UNSUBSCRIBE = 'unsubscribe';
public $allowed_actions = [
public $allowedActions = [
self::ACTION_CAPTCHA,
self::ACTION_CAPTCHA_IMAGE,
self::ACTION_CONFIRM,
@ -24,7 +24,7 @@ class Subscription {
];
/** @var UserSubscription\Pages */
private $subscription_pages;
private $subscriptionPages;
public function __construct(UserSubscription\Pages $subscriptionPages) {
$this->subscriptionPages = $subscriptionPages;