Issues (16)

src/Item/MatchableInterface.php (1 issue)

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