Files
kiri-router/src/Validator/Inject/Required.php
T

18 lines
251 B
PHP
Raw Normal View History

2023-04-15 23:29:27 +08:00
<?php
namespace Kiri\Inject\Validator\Inject;
#[\Attribute(\Attribute::TARGET_PROPERTY)]
class Required implements ValidatorInterface
{
public function dispatch(string $name): bool
{
// TODO: Implement dispatch() method.
return true;
}
}