1 | <?php |
||
8 | abstract class AbstractEntityService |
||
9 | { |
||
10 | /** @var EntityManagerInterface L'entity manager */ |
||
11 | protected $em; |
||
12 | |||
13 | /** @var ValidatorInterface Le service pour la validation des data */ |
||
14 | protected $validator; |
||
15 | |||
16 | protected function __construct(EntityManagerInterface $em, ValidatorInterface $validator) |
||
21 | |||
22 | /** |
||
23 | * Filtre les champs directs (pas les jointures) de $datas, en fonction des groupes de validation |
||
24 | * Et rempli l'entité avec les données filtrées, et éventuellement re-typées. |
||
25 | |||
26 | * Permet de scénariser les modifications d'entités grace aux groupes de validation. |
||
27 | * |
||
28 | * @see https://symfony.com/doc/current/validation/groups.html |
||
29 | * |
||
30 | * @param array $datas |
||
31 | * @param array $validation_groups |
||
32 | * @param AbstractEntity $entity |
||
33 | * |
||
34 | * @return array |
||
|
|||
35 | */ |
||
36 | protected function setPropertiesToEntity(array $datas, array $validation_groups, AbstractEntity $entity) |
||
68 | } |
||
69 |
This check compares the return type specified in the
@return
annotation of a function or method doc comment with the types returned by the function and raises an issue if they mismatch.If the return type contains the type array, this check recommends the use of a more specific type like
String[]
orarray<String>
.