Skip to content

Commit 0ccd2ed

Browse files
committed
minor symfony#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 ------- 2725fd6 [DI] Mark Container::$privates as internal
2 parents 95c03f2 + 2725fd6 commit 0ccd2ed

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/Symfony/Component/DependencyInjection/Container.php

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,10 +56,14 @@ class Container implements ResettableContainerInterface
5656

5757
protected $services = array();
5858
protected $methodMap = array();
59-
protected $privates = array();
6059
protected $aliases = array();
6160
protected $loading = array();
6261

62+
/**
63+
* @internal
64+
*/
65+
protected $privates = array();
66+
6367
private $underscoreMap = array('_' => '', '.' => '_', '\\' => '_');
6468
private $envCache = array();
6569

0 commit comments

Comments
 (0)