Skip to content
This repository was archived by the owner on Jan 29, 2020. It is now read-only.

Commit dd34bad

Browse files
committed
Made $aliases protected (not private)
- Allows extending in order to add more aliases.
1 parent e4a813c commit dd34bad

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/Controller/LazyControllerAbstractFactory.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,9 +77,11 @@ class LazyControllerAbstractFactory implements AbstractFactoryInterface
7777
* required for those services with no entry based on the class/interface
7878
* name.
7979
*
80+
* Extend the class if you wish to add to the list.
81+
*
8082
* @var string[]
8183
*/
82-
private $aliases = [
84+
protected $aliases = [
8385
ConsoleAdapterInterface::class => 'ConsoleAdapter',
8486
FilterPluginManager::class => 'FilterManager',
8587
HydratorPluginManager::class => 'HydratorManager',

0 commit comments

Comments
 (0)