Callable parameter injection
This is like what we have to DI and classes, but for callables.
The motivating factor is to get rid of *service locators* in the `boot`
method of apps as a new pattern is about to emerge where we have lots of
`query` calls on the app or server container in order to fetch some
services.
With this little helper it's possible to call another (public) method
and magically have everything injected.
Signed-off-by:
Christoph Wurst <christoph@winzerhof-wurst.at>
Showing
- lib/composer/composer/autoload_classmap.php 1 addition, 0 deletionslib/composer/composer/autoload_classmap.php
- lib/composer/composer/autoload_static.php 1 addition, 0 deletionslib/composer/composer/autoload_static.php
- lib/private/AppFramework/Bootstrap/BootContext.php 4 additions, 0 deletionslib/private/AppFramework/Bootstrap/BootContext.php
- lib/private/AppFramework/Bootstrap/FunctionInjector.php 69 additions, 0 deletionslib/private/AppFramework/Bootstrap/FunctionInjector.php
- lib/public/AppFramework/Bootstrap/IBootContext.php 22 additions, 0 deletionslib/public/AppFramework/Bootstrap/IBootContext.php
- tests/lib/AppFramework/Bootstrap/FunctionInjectorTest.php 84 additions, 0 deletionstests/lib/AppFramework/Bootstrap/FunctionInjectorTest.php
- tests/lib/AppFramework/Utility/SimpleContainerTest.php 6 additions, 3 deletionstests/lib/AppFramework/Utility/SimpleContainerTest.php
Loading
Please register or sign in to comment