| Numéro du ticket | Titre du ticket | |------------------|-----------------| | | | ## Description de la PR ## Modification du .env ## Check list - [ ] Pas de régression - [x] TU/TI/TF rédigée - [x] TU/TI/TF OK - [ ] CHANGELOG modifié Reviewed-on: #2 Co-authored-by: tristan <tristan@yuno.malio.fr> Co-committed-by: tristan <tristan@yuno.malio.fr>
17 lines
325 B
PHP
17 lines
325 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Malio\EdnotifBundle\Bovin\Dto;
|
|
|
|
final readonly class AnimalSummaryDto
|
|
{
|
|
/**
|
|
* @param list<PresencePeriodDto> $presencePeriods
|
|
*/
|
|
public function __construct(
|
|
public ?BovinIdentificationDto $identification,
|
|
public array $presencePeriods,
|
|
) {}
|
|
}
|