1 | <?php |
||
7 | class PathRegexUrlMatcher implements UrlMatcherInterface |
||
8 | { |
||
9 | /** |
||
10 | * @var string |
||
11 | */ |
||
12 | private $pattern; |
||
13 | |||
14 | /** |
||
15 | * @param string $pattern |
||
16 | */ |
||
17 | 3 | public function __construct($pattern) |
|
21 | |||
22 | /** |
||
23 | * @param Url $url |
||
24 | * @return bool |
||
25 | */ |
||
26 | 3 | public function matches(Url $url) |
|
30 | } |
||
31 |