Issues (16)

src/Match/UrlMatchVoterInterface.php (1 issue)

Labels
Severity
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Everlution\Navigation\Match;
0 ignored issues
show
A parse error occurred: Syntax error, unexpected T_MATCH, expecting T_STRING on line 5 at column 32
Loading history...
6
7
use Everlution\Navigation\Item\MatchableInterface;
8
9
/**
10
 * Interface UrlMatchVoterInterface.
11
 *
12
 * @author Ivan Barlog <[email protected]>
13
 */
14
interface UrlMatchVoterInterface
15
{
16
    public function matches(string $url, MatchableInterface $item): bool;
17
}
18