File tree Expand file tree Collapse file tree 3 files changed +0
-32
lines changed
src/Symfony/Component/PropertyInfo Expand file tree Collapse file tree 3 files changed +0
-32
lines changed Original file line number Diff line number Diff line change @@ -25,22 +25,16 @@ class ReflectionExtractor implements PropertyListExtractorInterface, PropertyTyp
25
25
{
26
26
/**
27
27
* @internal
28
- *
29
- * @var string[]
30
28
*/
31
29
public static $ mutatorPrefixes = array ('add ' , 'remove ' , 'set ' );
32
30
33
31
/**
34
32
* @internal
35
- *
36
- * @var string[]
37
33
*/
38
34
public static $ accessorPrefixes = array ('is ' , 'can ' , 'get ' );
39
35
40
36
/**
41
37
* @internal
42
- *
43
- * @var string[]
44
38
*/
45
39
public static $ arrayMutatorPrefixes = array ('add ' , 'remove ' );
46
40
Original file line number Diff line number Diff line change 21
21
*/
22
22
class SerializerExtractor implements PropertyListExtractorInterface
23
23
{
24
- /**
25
- * @var ClassMetadataFactoryInterface
26
- */
27
24
private $ classMetadataFactory ;
28
25
29
26
public function __construct (ClassMetadataFactoryInterface $ classMetadataFactory )
Original file line number Diff line number Diff line change @@ -47,34 +47,11 @@ class Type
47
47
self ::BUILTIN_TYPE_ITERABLE ,
48
48
);
49
49
50
- /**
51
- * @var string
52
- */
53
50
private $ builtinType ;
54
-
55
- /**
56
- * @var bool
57
- */
58
51
private $ nullable ;
59
-
60
- /**
61
- * @var string|null
62
- */
63
52
private $ class ;
64
-
65
- /**
66
- * @var bool
67
- */
68
53
private $ collection ;
69
-
70
- /**
71
- * @var Type|null
72
- */
73
54
private $ collectionKeyType ;
74
-
75
- /**
76
- * @var Type|null
77
- */
78
55
private $ collectionValueType ;
79
56
80
57
/**
You can’t perform that action at this time.
0 commit comments