| 1 | <?php |
||
| 30 | trait PrefixAwareTrait |
||
| 31 | { |
||
| 32 | /** |
||
| 33 | * prefix to match |
||
| 34 | * |
||
| 35 | * @var string |
||
| 36 | * @access protected |
||
| 37 | */ |
||
| 38 | protected $path_prefix; |
||
| 39 | |||
| 40 | /** |
||
| 41 | * {@inheritDoc} |
||
| 42 | */ |
||
| 43 | public function setPathPrefix(/*# string */ $pathPrefix = null) |
||
| 48 | |||
| 49 | /** |
||
| 50 | * {@inheritDoc} |
||
| 51 | */ |
||
| 52 | public function matchPathPrefix(/*# string */ $uriPath)/*# : bool */ |
||
| 62 | } |
||
| 63 |