8000 minor #24725 [PropertyInfo] Remove useless docblocks (nicolas-grekas) · symfony/symfony@daf1bc2 · GitHub
[go: up one dir, main page]

Skip to content

Commit daf1bc2

Browse files
committed
minor #24725 [PropertyInfo] Remove useless docblocks (nicolas-grekas)
This PR was merged into the 2.8 branch. Discussion ---------- [PropertyInfo] Remove useless docblocks | Q | A | ------------- | --- | Branch? | 2.8 | Bug fix? | no | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | yes | Fixed tickets | - | License | MIT | Doc PR | - Commits ------- b58c31f [PropertyInfo] Remove useless docblocks
2 parents f334fb5 + b58c31f commit daf1bc2

File tree

3 files changed

+0
-32
lines changed

3 files changed

+0
-32
lines changed

src/Symfony/Component/PropertyInfo/Extractor/ReflectionExtractor.php

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,22 +25,16 @@ class ReflectionExtractor implements PropertyListExtractorInterface, PropertyTyp
2525
{
2626
/**
2727
* @internal
28-
*
29-
* @var string[]
3028
*/
3129
public static $mutatorPrefixes = array('add', 'remove', 'set');
3230

3331
/**
3432
* @internal
35-
*
36-
* @var string[]
3733
*/
3834
public static $accessorPrefixes = array('is', 'can', 'get');
3935

4036
/**
4137
* @internal
42-
*
43-
* @var string[]
4438
*/
4539
public static $arrayMutatorPrefixes = array('add', 'remove');
4640

src/Symfony/Component/PropertyInfo/Extractor/SerializerExtractor.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,6 @@
2121
*/
2222
class SerializerExtractor implements PropertyListExtractorInterface
2323
{
24-
/**
25-
* @var ClassMetadataFactoryInterface
26-
*/
2724
private $classMetadataFactory;
2825

2926
public function __construct(ClassMetadataFactoryInterface $classMetadataFactory)

src/Symfony/Component/PropertyInfo/Type.php

Lines changed: 0 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -47,34 +47,11 @@ class Type
4747
self::BUILTIN_TYPE_ITERABLE,
4848
);
4949

50-
/**
51-
* @var string
52-
*/
5350
private $builtinType;
54-
55-
/**
56-
* @var bool
57-
*/
5851
private $nullable;
59-
60-
/**
61-
* @var string|null
62-
*/
6352
private $class;
64-
65-
/**
66-
* @var bool
67-
*/
6853
private $collection;
69-
70-
/**
71-
* @var Type|null
72-
*/
7354
private $collectionKeyType;
74-
75-
/**
76-
* @var Type|null
77-
*/
7855
private $collectionValueType;
7956

8057
/**

0 commit comments

Comments
 (0)
0