Newer
Older
<?php
namespace App\Requests;
use Symfony\Component\Validator\Constraints as Assert;
class UniqElementsRequest extends BaseRequest
{
#[Assert\All([
new Assert\Type('array'),
new Assert\All([
new Assert\Type('string'),
])
])]
public array $items;
}