| 1 | <?php |
||
| 6 | class RequestMatcher |
||
| 7 | { |
||
| 8 | const DEFAULT_ACTION_REGEX = '/^([A-Z0-9a-z_][^\.]+)\.action/'; |
||
| 9 | |||
| 10 | protected $actionRegex; |
||
| 11 | |||
| 12 | 27 | public function __construct($actionRegex = null) |
|
| 20 | |||
| 21 | 26 | public function match(Request $request) |
|
| 46 | |||
| 47 | public function reverse($actionName, array $params = array(), |
||
| 56 | } |