mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-08-20 22:53:49 +00:00
cs: Fix code-style (using PHPCSFixer and PHPCS).
This commit is contained in:
@@ -60,7 +60,9 @@ class AccompanyingPeriodWorkEvaluationContext implements
|
||||
$this->accompanyingPeriodWorkContext->adminFormReverseTransform($data),
|
||||
[
|
||||
'evaluations' => array_map(
|
||||
static function (Evaluation $e) { return $e->getId(); },
|
||||
static function (Evaluation $e) {
|
||||
return $e->getId();
|
||||
},
|
||||
$data['evaluations']
|
||||
),
|
||||
]
|
||||
@@ -73,7 +75,9 @@ class AccompanyingPeriodWorkEvaluationContext implements
|
||||
$this->accompanyingPeriodWorkContext->adminFormTransform($data),
|
||||
[
|
||||
'evaluations' => array_map(
|
||||
function ($id) { return $this->evaluationRepository->find($id); },
|
||||
function ($id) {
|
||||
return $this->evaluationRepository->find($id);
|
||||
},
|
||||
$data['evaluations'] ?? []
|
||||
),
|
||||
]
|
||||
|
Reference in New Issue
Block a user