| 1 | <?php |
||
| 15 | class PrefixMatch extends BaseProperty implements Match |
||
| 16 | { |
||
| 17 | /** @var string */ |
||
| 18 | private $prefix; |
||
| 19 | |||
| 20 | public function __construct(string $prefix) |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @param Voter $voter |
||
| 27 | * @return null|string |
||
| 28 | */ |
||
| 29 | public function accept(Voter &$voter) |
||
| 37 | |||
| 38 | /** |
||
| 39 | * @return string |
||
| 40 | */ |
||
| 41 | public function getPrefix(): string |
||
| 45 | } |
||
| 46 |