PSR-11 Object container
, (*1)
Simple PSR-11 Container implementation for storing object instances., (*2)
Installation
You can install this class via composer
:, (*3)
composer require yoshi2889/container
, (*4)
Usage
First, instantiate a new ComponentContainer. This is the object which will keep references to the components you put in it., (*5)
For any class that may be added to the ComponentContainer, it must implement the ComponentInterface
.
Optionally, the ComponentTrait
trait may be used to provide a ready-to-use means to implement the ComponentInterface
., (*6)
After adding an instance to the container, it may be retrieved either by using the get
method on the container
while providing the full class name, or, more conveniently, via the static fromContainer
method on the component., (*7)
An example of proper usage:, (*8)
<?php
class ExampleClass implements \Yoshi2889\Container\ComponentInterface
{
use \Yoshi2889\Container\ComponentTrait;
public function test()
{
echo 'Hello world!';
}
}
$componentContainer = new \Yoshi2889\Container\ComponentContainer();
$exampleClassInstance = new ExampleClass();
$componentContainer->add($exampleClassInstance);
// echoes 'Hello world!'
ExampleClass::fromContainer($componentContainer)->test();
License
This code is released under the MIT License. Please see LICENSE
to read it., (*9)