Issues (16)

src/Match/MatchInterface.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
/**
8
 * Interface MatchInterface.
9
 *
10
 * @author Ivan Barlog <[email protected]>
11
 */
12
interface MatchInterface
13
{
14
    public function getValue(): string;
15
}
16