All checks were successful
Auto Tag Develop / tag (push) Successful in 5s
| Numéro du ticket | Titre du ticket | |------------------|-----------------| | #322 | Page horaire | ## Description de la PR [#322] Page horaire ## Modification du .env ## Check list - [ ] Pas de régression - [ ] TU/TI/TF rédigée - [ ] TU/TI/TF OK - [ ] CHANGELOG modifié Reviewed-on: #4 Co-authored-by: tristan <tristan@yuno.malio.fr> Co-committed-by: tristan <tristan@yuno.malio.fr>
20 lines
437 B
PHP
20 lines
437 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Dto\WorkHours;
|
|
|
|
final class WeeklyDaySummary
|
|
{
|
|
public function __construct(
|
|
public string $date,
|
|
public int $dayMinutes,
|
|
public int $nightMinutes,
|
|
public int $totalMinutes,
|
|
public ?float $present = null,
|
|
public bool $hasAbsence = false,
|
|
public ?string $absenceLabel = null,
|
|
public ?string $absenceColor = null,
|
|
) {}
|
|
}
|