sy/container

依赖注入容器

1.0.1 2020-12-08 02:59 UTC

This package is auto-updated.

Last update: 2024-09-08 10:42:08 UTC


README

依赖注入容器

安装

使用以下命令安装最新版本

$ composer require sy/container

基本用法

<?php

use Sy\Container;

$container = new Container();

// Set an entry
$container->foo = function() {
	return 'hello';
};

// Get an entry
$var = $container->foo;

// Check an entry
if (isset($container->foo))