Skip to content

Commit a1e4197

Browse files
GrahamCampbellfabpot
authored andcommitted
[2.3] CS And DocBlock Fixes
1 parent eb09e84 commit a1e4197

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

Options.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,24 +22,28 @@ class Options implements \ArrayAccess, \Iterator, \Countable
2222
{
2323
/**
2424
* A list of option values.
25+
*
2526
* @var array
2627
*/
2728
private $options = array();
2829

2930
/**
3031
* A list of normalizer closures.
32+
*
3133
* @var array
3234
*/
3335
private $normalizers = array();
3436

3537
/**
3638
* A list of closures for evaluating lazy options.
39+
*
3740
* @var array
3841
*/
3942
private $lazy = array();
4043

4144
/**
4245
* A list containing the currently locked options.
46+
*
4347
* @var array
4448
*/
4549
private $lock = array();

OptionsResolver.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,30 +25,35 @@ class OptionsResolver implements OptionsResolverInterface
2525
{
2626
/**
2727
* The default option values.
28+
*
2829
* @var Options
2930
*/
3031
private $defaultOptions;
3132

3233
/**
3334
* The options known by the resolver.
35+
*
3436
* @var array
3537
*/
3638
private $knownOptions = array();
3739

3840
/**
3941
* The options without defaults that are required to be passed to resolve().
42+
*
4043
* @var array
4144
*/
4245
private $requiredOptions = array();
4346

4447
/**
4548
* A list of accepted values for each option.
49+
*
4650
* @var array
4751
*/
4852
private $allowedValues = array();
4953

5054
/**
5155
* A list of accepted types for each option.
56+
*
5257
* @var array
5358
*/
5459
private $allowedTypes = array();

0 commit comments

Comments
 (0)