minor #23565 [DI] Mark Container::$privates as internal (nicolas-grekas)

This PR was merged into the 3.2 branch.

Discussion
----------

[DI] Mark Container::$privates as internal

| Q             | A
| ------------- | ---
| Branch?       | 3.2
| Bug fix?      | no
| New feature?  | no
| BC breaks?    | no
| Deprecations? | no
| Tests pass?   | yes
| Fixed tickets | -
| License       | MIT
| Doc PR        | -

As is should have been since its introduction.

Commits
-------

2725fd6080 [DI] Mark Container::$privates as internal
This commit is contained in:
Fabien Potencier 2017-07-18 09:28:01 +02:00
commit 0ccd2edb21

View File

@ -56,10 +56,14 @@ class Container implements ResettableContainerInterface
protected $services = array();
protected $methodMap = array();
protected $privates = array();
protected $aliases = array();
protected $loading = array();
/**
* @internal
*/
protected $privates = array();
private $underscoreMap = array('_' => '', '.' => '_', '\\' => '_');
private $envCache = array();