实现PSR-11容器接口

v1.0.3 2020-01-14 12:18 UTC

This package is auto-updated.

Last update: 2024-04-16 00:54:45 UTC


README

实现PSR-11容器接口

Build Status

安装

composer require twinkle/di --prefer-dist --optimize-autoloader

示例

Container

$definitions = [
    'hello' => [
        'class' => \HelloWorld::class,
    ]
];
$container = new \Twinkle\DI\Container($definitions);

// 是否注入容器
isset($container['hello'])

// 获取实例
$instance = $container['hello'];
$instance->someMethod();

// 释放
unset($container['hello']);

ServiceLocator

namespace App\Services;
class HelloService
{

    public function sayHello()
    {
        return 'hello';
    }
}

namespace App\Controllers;
use App\Services\HelloService;
use Twinkle\DI\ServiceLocatorTrait;

/**
 * Class HelloController
 * @package App\Controllers
 * @property HelloService $helloService
 */
class HelloController
{

    use ServiceLocatorTrait;

    public static function supportAutoNamespaces()
    {
        return [
            'App\\Services',
            'Twinkle\\Services'
        ];
    }

    public function indexAction()
    {
        echo $this->helloService->sayHello();
    }

}