11
0
Fork 0
mirror of https://github.com/n3w/helpers-cli-input.git synced 2025-12-19 12:43:23 +00:00
helpers-cli-input/src/Input/Interfaces/InputValidatorInterface.php
Alannah Kearney 0620d00f08 Initial commit
2019-05-20 15:08:41 +10:00

12 lines
259 B
PHP

<?php
declare(strict_types=1);
namespace pointybeard\Helpers\Cli\Input\Interfaces;
use pointybeard\Helpers\Cli\Input;
interface InputValidatorInterface
{
public function validate(Input\AbstractInputType $input, Input\AbstractInputHandler $context);
}