Basic PSR-11 compatible php container blueprint.
$ composer install earc/containeruse eArc\Container\Items;
$container = new Items();Please refer to the ItemsInterface for details.
-
An
ItemNotCallableExceptionis thrown if an item is called that is no callable. -
An
ItemNotFoundExceptionis thrown if an item is get or called that does not exist. -
An
ItemOverwriteExceptionis thrown if an item is set but its name exists already.overwrite()does not trigger this exception. -
All three exceptions inherit from the
ItemException.