Laravel外部的Illuminate / Container自动装订分辨率

时间:2015-07-03 22:26:12

标签: php laravel ioc-container

我试图引入一些Illuminate组件来拯救遗留应用程序,即容器,事件和路由器。在尝试将具体类绑定到接口时,我无法通过BindingResolutionException。

的index.php

<?php

require __DIR__ . '/vendor/autoload.php';

$app = new Illuminate\Container\Container;

$app->bind('dispatcher', function () {
    return new Illuminate\Events\Dispatcher;
});

$app->bind('router', function ($app) {
    return new Illuminate\Routing\Router($app['dispatcher']);
});

// This is the interface I'm trying to bind
$app->bind('App\Logable', function () {
    return new App\Logger();
});

$router = $app['router'];

// This is where I'm trying to use automatic binding resolution
$router->get('/', function (App\Logable $logger) {
    return $logger->log();
});

$request = Illuminate\Http\Request::createFromGlobals();
$response = $router->dispatch($request);
$response->send();

的src / Logable.php

<?php

namespace App;

interface Logable
{
    public function log();
}

的src / Logger.php

<?php

namespace App;

class Logger implements Logable
{
    public function log()
    {
        var_dump($this);
    }
}

有没有人有任何想法?我不确定是否需要注册为服务提供商,或者我是否需要使用Illuminate \ Application \ Foundation?如果是这样,这是唯一的方法吗?

提前致谢

1 个答案:

答案 0 :(得分:2)

我意识到我正在实例化多个容器而不是传递我最初创建的容器(通过查看对象ID)。我的解决方案是在实例化时将容器传递给路由器:

$app->bind('router', function ($app) {
    return new Illuminate\Routing\Router($app['dispatcher'], $app);
});

然后一切都按预期工作。