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

@@ -31,13 +31,13 @@ class SendingQueueEntity {
* @Assert\NotBlank()
* @var array|null
*/
private $newsletter_rendered_body;
private $newsletterRenderedBody;
/**
* @ORM\Column(type="string")
* @var string|null
*/
private $newsletter_rendered_subject;
private $newsletterRenderedSubject;
/**
* @ORM\Column(type="text")
@@ -49,19 +49,19 @@ class SendingQueueEntity {
* @ORM\Column(type="integer")
* @var int
*/
private $count_total = 0;
private $countTotal = 0;
/**
* @ORM\Column(type="integer")
* @var int
*/
private $count_processed = 0;
private $countProcessed = 0;
/**
* @ORM\Column(type="integer")
* @var int
*/
private $count_to_process = 0;
private $countToProcess = 0;
/**
* @ORM\Column(type="json")