Skip to content

Commit

Permalink
Update doc blocks for #3532
Browse files Browse the repository at this point in the history
  • Loading branch information
markstory committed Jun 27, 2014
1 parent 35b9975 commit 0da3c4c
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/Routing/DispatcherFilter.php
Expand Up @@ -39,6 +39,12 @@
* When the above filter is connected to a dispatcher it will only fire
* its `beforeDispatch` and `afterDispatch` methods on requests that start with `/blog`.
*
* The for condition can also be a regular expression by using the `preg:` prefix:
*
* {{{
* $filter = new BlogFilter(['for' => 'preg:#^/blog/\d+$#']);
* }}}
*
* ### Limiting filters based on conditions
*
* In addition to simple path based matching you can use a closure to match on arbitrary request
Expand Down

0 comments on commit 0da3c4c

Please sign in to comment.