Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
1<?php
2
3/**
4 * @license MIT
5 * @author hazuki3417<hazuki3417@gmail.com>
6 * @copyright 2022 hazuki3417 all rights reserved.
7 */
8
9namespace Selen\MongoDB\Validator;
10
11use Selen\MongoDB\Validator\Attribute\ValidateMarkerInterface;
12use Selen\MongoDB\Validator\Model\ValidateResult;
13
14interface ValueValidateInterface extends ValidateMarkerInterface
15{
16    /**
17     * @param array<mixed,mixed> $value
18     */
19    public function execute(array $value, ValidateResult $result): ValidateResult;
20}