8000 minor #23565 [DI] Mark Container::$privates as internal (nicolas-grekas) · symfony/symfony@0ccd2ed · GitHub
[go: up one dir, main page]

Skip to content

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 0ccd2ed

Browse files
committed
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 ------- 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)
0