| 1 | <?php |
||
| 16 | */ |
||
| 17 | class ValidationMiddleware implements Middleware |
||
| 18 | { |
||
| 19 | /** |
||
| 20 | * @var ValidatorInterface |
||
| 21 | */ |
||
| 22 | private $validator; |
||
| 23 | |||
| 24 | /** |
||
| 25 | * ValidationMiddleware constructor. |
||
| 26 | * |
||
| 27 | * @param ValidatorInterface $validator |
||
| 28 | */ |
||
| 29 | public function __construct(ValidatorInterface $validator) |
||
| 33 | |||
| 34 | |||
| 35 | public function handle(Command $message) |
||
| 52 | } |
||
| 53 |