Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / vendor / consolidation / annotated-command / src / Hooks / ValidatorInterface.php
1 <?php
2 namespace Consolidation\AnnotatedCommand\Hooks;
3
4 use Consolidation\AnnotatedCommand\CommandData;
5
6 /**
7  * Validate the arguments for the current command.
8  *
9  * @see HookManager::addValidator()
10  */
11 interface ValidatorInterface
12 {
13     public function validate(CommandData $commandData);
14 }