Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 878 Bytes

README.md

File metadata and controls

20 lines (14 loc) · 878 Bytes

Scrutinizer Code Quality Code Coverage Build Status Code Intelligence Status

Specter Container.

A simple implmentation of a PSR-11 Container.

Usage:

$container = new Container();

$container->set('foo',new DateTime());

if($container->has('foo'){
    $today = $container->get('foo')
}