| 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>
23 lines
506 B
PHP
23 lines
506 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Malio\EdnotifBundle\Bovin\Dto;
|
|
|
|
use DateTimeImmutable;
|
|
use Malio\EdnotifBundle\Shared\Dto\StandardResponseDto;
|
|
|
|
final readonly class ReturnedDossiersDto
|
|
{
|
|
/**
|
|
* @param list<AnimalSummaryDto> $animals
|
|
*/
|
|
public function __construct(
|
|
public StandardResponseDto $standardResponse,
|
|
public int $nbBovins,
|
|
public ?DateTimeImmutable $startDate,
|
|
public array $animals,
|
|
public ?object $rawSoapResponse,
|
|
) {}
|
|
}
|