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

@@ -18,7 +18,7 @@ class Track {
const ENDPOINT = 'track';
const ACTION_CLICK = 'click';
const ACTION_OPEN = 'open';
public $allowed_actions = [
public $allowedActions = [
self::ACTION_CLICK,
self::ACTION_OPEN,
];
@@ -33,7 +33,7 @@ class Track {
private $opens;
/** @var LinkTokens */
private $link_tokens;
private $linkTokens;
public function __construct(Clicks $clicks, Opens $opens, LinkTokens $linkTokens) {
$this->clicks = $clicks;