Skip to content

Commit 582d58a

Browse files
committed
make StyleCI happy again
1 parent 516b3d4 commit 582d58a

File tree

8 files changed

+22
-0
lines changed

8 files changed

+22
-0
lines changed

.styleci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
preset: symfony
22
disabled:
33
- braces
4+
- property_separation

Context/Context.php

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,26 +24,32 @@ final class Context
2424
* @var array
2525
*/
2626
private $attributes = array();
27+
2728
/**
2829
* @var int|null
2930
*/
3031
private $version;
32+
3133
/**
3234
* @var array|null
3335
*/
3436
private $groups;
37+
3538
/**
3639
* @var int
3740
*/
3841
private $maxDepth;
42+
3943
/**
4044
* @var bool
4145
*/
4246
private $isMaxDepthEnabled;
47+
4348
/**
4449
* @var bool
4550
*/
4651
private $serializeNull;
52+
4753
/**
4854
* @var ExclusionStrategyInterface[]
4955
*/

Controller/Annotations/AbstractParam.php

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,16 +24,22 @@ abstract class AbstractParam implements ParamInterface
2424
{
2525
/** @var string */
2626
public $name;
27+
2728
/** @var string */
2829
public $key;
30+
2931
/** @var mixed */
3032
public $default;
33+
3134
/** @var string */
3235
public $description;
36+
3337
/** @var bool */
3438
public $strict = false;
39+
3540
/** @var bool */
3641
public $nullable = false;
42+
3743
/** @var array */
3844
public $incompatibles = array();
3945

Controller/Annotations/AbstractScalarParam.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,10 @@ abstract class AbstractScalarParam extends AbstractParam
2525
{
2626
/** @var mixed */
2727
public $requirements = null;
28+
2829
/** @var bool */
2930
public $map = false;
31+
3032
/** @var bool */
3133
public $allowBlank = true;
3234

Controller/Annotations/FileParam.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,13 @@ class FileParam extends AbstractParam
2828
{
2929
/** @var bool */
3030
public $strict = true;
31+
3132
/** @var mixed */
3233
public $requirements = null;
34+
3335
/** @var bool */
3436
public $image = false;
37+
3538
/** @var bool */
3639
public $map = false;
3740

Controller/Annotations/RouteResource.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ class RouteResource
2323
* @var string required
2424
*/
2525
public $resource;
26+
2627
/**
2728
* @var bool
2829
*/

Serializer/JMSSerializerAdapter.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ class JMSSerializerAdapter implements Serializer
3030
* @internal
3131
*/
3232
const SERIALIZATION = 0;
33+
3334
/**
3435
* @internal
3536
*/

Tests/EventListener/VersionListenerTest.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,12 @@ class VersionListenerTest extends TestCase
2727
* @var \FOS\RestBundle\View\ConfigurableViewHandlerInterface
2828
*/
2929
private $viewHandler;
30+
3031
/**
3132
* @var \FOS\RestBundle\Version\VersionResolverInterface
3233
*/
3334
private $resolver;
35+
3436
/**
3537
* @var VersionListener
3638
*/

0 commit comments

Comments
 (0)