Skip to content

Commit 20b1378

Browse files
committed
fixes CS
1 parent 71fed8c commit 20b1378

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

Router.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -355,7 +355,9 @@ public function addExpressionLanguageProvider(ExpressionFunctionProviderInterfac
355355

356356
/**
357357
* This method is public because it needs to be callable from a closure in PHP 5.3. It should be converted back to protected in 3.0.
358+
*
358359
* @internal
360+
*
359361
* @return GeneratorDumperInterface
360362
*/
361363
public function getGeneratorDumperInstance()
@@ -365,7 +367,9 @@ public function getGeneratorDumperInstance()
365367

366368
/**
367369
* This method is public because it needs to be callable from a closure in PHP 5.3. It should be converted back to protected in 3.0.
370+
*
368371
* @internal
372+
*
369373
* @return MatcherDumperInterface
370374
*/
371375
public function getMatcherDumperInstance()

Tests/Loader/AnnotationClassLoaderTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,14 +152,14 @@ public function testClassRouteLoad()
152152
$classRouteData = array(
153153
'path' => '/prefix',
154154
'schemes' => array('https'),
155-
'methods' => array('GET')
155+
'methods' => array('GET'),
156156
);
157157

158158
$methodRouteData = array(
159159
'name' => 'route1',
160160
'path' => '/path',
161161
'schemes' => array('http'),
162-
'methods' => array('POST', 'PUT')
162+
'methods' => array('POST', 'PUT'),
163163
);
164164

165165
$this->reader

0 commit comments

Comments
 (0)