Recommend this page to a friend! |
Classes of Carlos Artur Curvelo da Matos | Mainframe Control Freak PHP Dependency Injection Container | README.md | Download |
|
DownloadMainframeDeadly simple object container experiment that makes possible to call any methods existent in the injected objects directly through the container. If more than one object have the called function, all of them are executed. If no methods are found, then the container just ignores the calling. InstallationAs usual, we prefer using Composer for managing dependencies, so this package can be installed using UsageUsing Mainframe is actually quite simple. Let's consider we have two classes A and B, and want to inject them into the container. Injections can be made either during the container instantiation or thereafter, by using the method add(), as follows.
As a matter of controlling objects, all injected objects must have a key. That will allow Mainframe to gather and retrieve all of their methods using Reflection, which will generate a databank where objects and methods names are stored for being called later. Now we have both objects inside the container, we can use all of their methods through the container, directly. Also, you can specifically target a particular method in a particular instance, by using the virtual method terminal($key, $methodName, $args).
MoreAs an extension of PHP's ArrayObject class, Mainframe is able to accepted any of this class existent methods. However, to make it easier, additional aliases will be created for managing the injected objects. |