earc/container

eArc - 显式架构框架 - 基本PSR-11兼容容器蓝图

0.1.0 2019-02-02 16:08 UTC

This package is auto-updated.

Last update: 2024-09-29 05:08:43 UTC


README

基本的PSR-11兼容PHP容器蓝图。

安装

$ composer install earc/container

基本用法

use eArc\Container\Items;

$container = new Items();

请参阅ItemsInterface以获取详细信息。

异常

  • 如果调用了一个不可调用的项,将抛出ItemNotCallableException异常。

  • 如果获取或调用了一个不存在的项,将抛出ItemNotFoundException异常。

  • 如果设置了一个已存在的项,将抛出ItemOverwriteException异常。overwrite()不会触发此异常。

  • 所有三个异常都继承自ItemException