| Numéro du ticket | Titre du ticket | |------------------|-----------------| | | | ## Description de la PR ## Modification du .env ## Check list - [ ] Pas de régression - [ ] TU/TI/TF rédigée - [x] TU/TI/TF OK - [x] CHANGELOG modifié Reviewed-on: #6 Co-authored-by: tristan <tristan@yuno.malio.fr> Co-committed-by: tristan <tristan@yuno.malio.fr>
15 lines
247 B
PHP
15 lines
247 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\ApiResource;
|
|
|
|
final class PresencePeriod
|
|
{
|
|
public ?string $entryDate = null;
|
|
public ?string $entryCause = null;
|
|
|
|
public ?string $exitDate = null;
|
|
public ?string $exitCause = null;
|
|
}
|