dsmithhayes/toychest

本包最新版本(v1.0.2)没有提供许可信息。

基本依赖容器。

v1.0.2 2016-09-25 17:00 UTC

This package is not auto-updated.

Last update: 2024-09-23 11:58:12 UTC


README

一个极其基本的依赖容器。

添加依赖

向容器中添加依赖很简单。`ToyChest` 容器实现了 SPL 接口 \ArrayAccess,因此你可以像使用数组一样使用它。

<?php

use ToyChest\ToyChest;
use Some\ORM\Model;

$container = new ToyChest();

$container['user'] = function ($container) {
    return new Model('User', $container['dbh']);
};