everlutionsk /
navigation
| 1 | <?php |
||
| 2 | |||
| 3 | declare(strict_types=1); |
||
| 4 | |||
| 5 | namespace Everlution\Navigation\Match; |
||
|
0 ignored issues
–
show
Bug
introduced
by
Loading history...
|
|||
| 6 | |||
| 7 | /** |
||
| 8 | * Interface VoterInterface. |
||
| 9 | * |
||
| 10 | * @author Ivan Barlog <[email protected]> |
||
| 11 | */ |
||
| 12 | interface VoterInterface |
||
| 13 | { |
||
| 14 | public function matches(string $url, MatchInterface $match): bool; |
||
| 15 | } |
||
| 16 |