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

@@ -15,11 +15,11 @@ class OpenTracking {
// url is a temporary data tag that will be further replaced with
// the proper track API URL during sending
$url = Links::DATA_TAG_OPEN;
$open_tracking_image = sprintf(
$openTrackingImage = sprintf(
'<img alt="" class="" src="%s"/>',
$url
);
$template->html($template->html() . $open_tracking_image);
$template->html($template->html() . $openTrackingImage);
return $DOM->__toString();
}