Convert variable names to camel case in strings

[MAILPOET-1796]
This commit is contained in:
Jan Jakeš
2020-01-09 15:10:24 +01:00
committed by Jan Jakeš
parent 8c848cfa28
commit 3bbc8ea2af
42 changed files with 116 additions and 115 deletions

View File

@@ -17,8 +17,8 @@ class ValidationException extends \RuntimeException {
$this->violations = $violations;
$linePrefix = ' ';
$message = "Validation failed for '$resource_name'.\nDetails:\n";
$message .= $linePrefix . implode("\n$line_prefix", $this->getErrors());
$message = "Validation failed for '$resourceName'.\nDetails:\n";
$message .= $linePrefix . implode("\n$linePrefix", $this->getErrors());
parent::__construct($message);
}