Skip to content

Commit 8ffcc7f

Browse files
committed
cs cleanup
1 parent fd7f892 commit 8ffcc7f

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

ChainRouter.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,7 @@ private function doMatch($url, Request $request = null)
168168
if (null === $request) {
169169
$request = Request::create($url);
170170
}
171+
171172
return $router->matchRequest($request);
172173
}
173174
// every router implements the match method

ContentAwareGenerator.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -258,9 +258,9 @@ public function getRouteDebugMessage($name, array $parameters = array())
258258
* Unset the _locale parameter if it is there and not needed
259259
*
260260
* @param SymfonyRoute $route
261-
* @param array $parameters
261+
* @param array $parameters
262262
*/
263-
protected function unsetLocaleIfNotNeeded(SymfonyRoute $route, array &$parameters)
263+
protected function unsetLocaleIfNotNeeded(SymfonyRoute $route, array &$parameters)
264264
{
265265
$locale = $this->getLocale($parameters);
266266
if (null !== $locale) {

NestedMatcher/NestedMatcher.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ class NestedMatcher implements RequestMatcherInterface
5757
*
5858
* @param RouteProviderInterface $provider The Route Provider this matcher
5959
* should use
60-
* @param FinalMatcherInterface $final The Final Matcher to match the
60+
* @param FinalMatcherInterface $final The Final Matcher to match the
6161
* routes
6262
*/
6363
public function __construct(

Tests/Routing/ChainRouterTest.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,6 @@ public function testMatchWithRequestMatchers()
267267
$this->assertEquals(array('test'), $result);
268268
}
269269

270-
271270
/**
272271
* If there is a method not allowed but another router matches, that one is used
273272
*/

0 commit comments

Comments
 (0)