Skip to content

Commit 08748ed

Browse files
Merge branch '3.3' into 3.4
* 3.3: [Serializer] Fix extra attributes when no group specified [Intl] Make intl-data tests pass and save language aliases again [Console] Fix CommandTester::setInputs() docblock [Serializer] readd default argument value [VarDumper] fix trailling comma when dumping an exception Remove useless docblocks [FrameworkBundle] Fix docblocks [PropertyInfo] Remove useless docblocks
2 parents d0412a6 + 623d9c2 commit 08748ed

File tree

1 file changed

+0
-18
lines changed

1 file changed

+0
-18
lines changed

OptionsResolver.php

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -28,29 +28,21 @@ class OptionsResolver implements Options
2828
{
2929
/**
3030
* The names of all defined options.
31-
*
32-
* @var array
3331
*/
3432
private $defined = array();
3533

3634
/**
3735
* The default option values.
38-
*
39-
* @var array
4036
*/
4137
private $defaults = array();
4238

4339
/**
4440
* The names of required options.
45-
*
46-
* @var array
4741
*/
4842
private $required = array();
4943

5044
/**
5145
* The resolved option values.
52-
*
53-
* @var array
5446
*/
5547
private $resolved = array();
5648

@@ -63,31 +55,23 @@ class OptionsResolver implements Options
6355

6456
/**
6557
* A list of accepted values for each option.
66-
*
67-
* @var array
6858
*/
6959
private $allowedValues = array();
7060

7161
/**
7262
* A list of accepted types for each option.
73-
*
74-
* @var array
7563
*/
7664
private $allowedTypes = array();
7765

7866
/**
7967
* A list of closures for evaluating lazy options.
80-
*
81-
* @var array
8268
*/
8369
private $lazy = array();
8470

8571
/**
8672
* A list of lazy options whose closure is currently being called.
8773
*
8874
* This list helps detecting circular dependencies between lazy options.
89-
*
90-
* @var array
9175
*/
9276
private $calling = array();
9377

@@ -98,8 +82,6 @@ class OptionsResolver implements Options
9882
* necessary in order to avoid inconsistencies during the resolving
9983
* process. If any option is changed after being read, all evaluated
10084
* lazy options that depend on this option would become invalid.
101-
*
102-
* @var bool
10385
*/
10486
private $locked = false;
10587

0 commit comments

Comments
 (0)