Skip to content

Commit

Permalink
Merge branch '2.8' into 3.3
Browse files Browse the repository at this point in the history
* 2.8:
  [Intl] Make intl-data tests pass and save language aliases again
  Remove useless docblocks
  [PropertyInfo] Remove useless docblocks
  • Loading branch information
nicolas-grekas committed Nov 5, 2017
2 parents ee4e229 + e4e64cb commit 623d9c2
Showing 1 changed file with 0 additions and 18 deletions.
18 changes: 0 additions & 18 deletions OptionsResolver.php
Expand Up @@ -28,29 +28,21 @@ class OptionsResolver implements Options
{
/**
* The names of all defined options.
*
* @var array
*/
private $defined = array();

/**
* The default option values.
*
* @var array
*/
private $defaults = array();

/**
* The names of required options.
*
* @var array
*/
private $required = array();

/**
* The resolved option values.
*
* @var array
*/
private $resolved = array();

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

/**
* A list of accepted values for each option.
*
* @var array
*/
private $allowedValues = array();

/**
* A list of accepted types for each option.
*
* @var array
*/
private $allowedTypes = array();

/**
* A list of closures for evaluating lazy options.
*
* @var array
*/
private $lazy = array();

/**
* A list of lazy options whose closure is currently being called.
*
* This list helps detecting circular dependencies between lazy options.
*
* @var array
*/
private $calling = array();

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

Expand Down

0 comments on commit 623d9c2

Please sign in to comment.