for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace PTS\Validator\Validators;
class InArrayValidator
{
public function __invoke($value, array $allow): bool
return in_array($value, $allow, true);
}