1 | <?php |
||
34 | class PathPrefixCondition extends ObjectAbstract implements ConditionInterface |
||
35 | { |
||
36 | /** |
||
37 | * @var string[] |
||
38 | * @access protected |
||
39 | */ |
||
40 | protected $prefix; |
||
41 | |||
42 | /** |
||
43 | * @param string|string[] $pathPrefix |
||
44 | * @access public |
||
45 | */ |
||
46 | public function __construct($pathPrefix) |
||
50 | |||
51 | /** |
||
52 | * {@inheritDoc} |
||
53 | */ |
||
54 | public function evaluate( |
||
65 | } |
||
66 |