Skip to content

Commit e49f6c7

Browse files
authored
Merge pull request #220 from symfony-cmf/analysis-qJWaaD
Apply fixes from StyleCI
2 parents e1bc515 + f50a032 commit e49f6c7

12 files changed

+30
-0
lines changed

src/Enhancer/FieldByClassEnhancer.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,12 @@ class FieldByClassEnhancer implements RouteEnhancerInterface
3030
* @var string field for the source class
3131
*/
3232
protected $source;
33+
3334
/**
3435
* @var string field to write hashmap lookup result into
3536
*/
3637
protected $target;
38+
3739
/**
3840
* @var array containing the mapping between a class name and the target value
3941
*/

src/Enhancer/FieldMapEnhancer.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,12 @@ class FieldMapEnhancer implements RouteEnhancerInterface
2525
* @var string field for key in hashmap lookup
2626
*/
2727
protected $source;
28+
2829
/**
2930
* @var string field to write hashmap lookup result into
3031
*/
3132
protected $target;
33+
3234
/**
3335
* @var array containing the mapping between the source field value and target field value
3436
*/

src/Enhancer/RouteContentEnhancer.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ class RouteContentEnhancer implements RouteEnhancerInterface
2828
* @var string field for the route class
2929
*/
3030
protected $routefield;
31+
3132
/**
3233
* @var string field to write hashmap lookup result into
3334
*/

tests/Unit/Enhancer/FieldByClassEnhancerTest.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,12 @@
1717
class FieldByClassEnhancerTest extends \PHPUnit_Framework_TestCase
1818
{
1919
private $request;
20+
2021
/**
2122
* @var FieldByClassEnhancer
2223
*/
2324
private $mapper;
25+
2426
private $document;
2527

2628
public function setUp()

tests/Unit/Enhancer/FieldPresenceEnhancerTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ class FieldPresenceEnhancerTest extends \PHPUnit_Framework_TestCase
2020
* @var FieldPresenceEnhancer
2121
*/
2222
private $mapper;
23+
2324
private $request;
2425

2526
public function setUp()

tests/Unit/Enhancer/RouteContentEnhancerTest.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,9 @@ class RouteContentEnhancerTest extends \PHPUnit_Framework_TestCase
2222
* @var RouteContentEnhancer
2323
*/
2424
private $mapper;
25+
2526
private $document;
27+
2628
private $request;
2729

2830
public function setUp()

tests/Unit/NestedMatcher/NestedMatcherTest.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,11 @@
2323
class NestedMatcherTest extends \PHPUnit_Framework_TestCase
2424
{
2525
private $provider;
26+
2627
private $routeFilter1;
28+
2729
private $routeFilter2;
30+
2831
private $finalMatcher;
2932

3033
public function setUp()

tests/Unit/NestedMatcher/UrlMatcherTest.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,13 @@
2323
class UrlMatcherTest extends \PHPUnit_Framework_TestCase
2424
{
2525
protected $routeDocument;
26+
2627
protected $routeCompiled;
28+
2729
protected $matcher;
30+
2831
protected $context;
32+
2933
protected $request;
3034

3135
protected $url = '/foo/bar';

tests/Unit/Routing/ChainRouterTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ class ChainRouterTest extends \PHPUnit_Framework_TestCase
3232
* @var ChainRouter
3333
*/
3434
private $router;
35+
3536
/**
3637
* @var RequestContext|\PHPUnit_Framework_MockObject_MockObject
3738
*/

tests/Unit/Routing/ContentAwareGeneratorTest.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,16 @@ class ContentAwareGeneratorTest extends \PHPUnit_Framework_TestCase
2828
* @var RouteMock
2929
*/
3030
private $routeDocument;
31+
3132
private $routeCompiled;
33+
3234
private $provider;
3335

3436
/**
3537
* @var ContentAwareGenerator
3638
*/
3739
private $generator;
40+
3841
private $context;
3942

4043
public function setUp()

0 commit comments

Comments
 (0)