NanoSector / container

PSR-11 container implementation for storing object instances

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

PSR-11 Object container

Build Status Scrutinizer Code Quality Scrutinizer Code Coverage Latest Stable Version Latest Unstable Version Total Downloads

Simple PSR-11 Container implementation for storing object instances.

Installation

You can install this class via composer:

composer require yoshi2889/container

Usage

First, instantiate a new ComponentContainer. This is the object which will keep references to the components you put in it.

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.

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.

An example of proper usage:

<?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.

About

PSR-11 container implementation for storing object instances

License:MIT License


Languages

Language:PHP 100.0%