/var/www/html/back/app/DtoCasts/IntegerCast.php
<?php

declare(strict_types=1);

namespace App\DtoCasts;

use WendellAdriel\ValidatedDTO\Casting\Castable;

final class IntegerCast implements Castable
{
    public function cast(string $property, mixed $value): mixed
    {
        return (int) $value;
    }
}