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

@@ -3,7 +3,7 @@
namespace MailPoet\Newsletter\Renderer\Columns;
class ColumnsHelper {
static $columns_width = [
static $columnsWidth = [
1 => [660],
2 => [330, 330],
"1_2" => [220, 440],
@@ -11,13 +11,13 @@ class ColumnsHelper {
3 => [220, 220, 220],
];
static $columns_class = [
static $columnsClass = [
1 => 'cols-one',
2 => 'cols-two',
3 => 'cols-three',
];
static $columns_alignment = [
static $columnsAlignment = [
1 => null,
2 => 'left',
3 => 'right',