8000 added RouterInterface::getRouteCollection() · Faianca/symfony@1467bdb · GitHub
[go: up one dir, main page]

Skip to content

Commit 1467bdb

Browse files
committed
added RouterInterface::getRouteCollection()
1 parent 1c23ce9 commit 1467bdb

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

CHANGELOG-2.1.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,10 @@ To get the diff between two versions, go to https://github.com/symfony/symfony/c
6868
* added a File-based profiler storage
6969
* added a MongoDB-based profiler storage
7070

71+
### Routing
72+
73+
* added RouterInterface::getRouteCollection
74+
7175
### Translation
7276

7377
* added support for more than one fallback locale

src/Symfony/Component/Routing/RouterInterface.php

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,10 @@
2323
*/
2424
interface RouterInterface extends UrlMatcherInterface, UrlGeneratorInterface
2525
{
26+
/**
27+
* Gets the RouteCollection instance associated with this Router.
28+
*
29+
* @return RouteCollection A RouteCollection instance
30+
*/
31+
function getRouteCollection();
2632
}

0 commit comments

Comments
 (0)
0