Convert Doctrine specific code to camel case

[MAILPOET-1796]
This commit is contained in:
Jan Jakeš
2020-01-09 10:15:17 +01:00
committed by Jan Jakeš
parent 71d623f915
commit fbcaeaadbc
13 changed files with 26 additions and 26 deletions

View File

@@ -32,7 +32,7 @@ class CustomFields extends APIEndpoint {
}
public function getAll() {
$collection = $this->customFieldsRepository->findBy([], ['created_at' => 'asc']);
$collection = $this->customFieldsRepository->findBy([], ['createdAt' => 'asc']);
return $this->successResponse($this->customFieldsResponseBuilder->buildBatch($collection));
}