0

当注入构造函数时,我似乎无法让 PHP-DI 正确解析其配置类的接口。在下面的代码中,使用容器获取\Foo\IDog会返回一个Poodle类,但是当使用容器获取\Foo\Kennel(在构造函数中有一个\Foo\IDog)时,它不再识别它被配置为返回一个贵宾犬和错误说:

"Entry "\Foo\Kennel" cannot be resolved: Entry "Foo\IDog" cannot be resolved: the class is not instantiable"

这是概念证明:

<?php
namespace Foo;

require(__DIR__ . "/vendor/autoload.php");

interface IDog {
    function bark();
}

class Poodle implements IDog {
    public function bark() {
        echo "woof!" . PHP_EOL;
    }
}

class Kennel {
    protected $dog;
    public function __construct(\Foo\IDog $dog) {
        $this->dog = $dog;
    }

    public function pokeDog() {
        $this->dog->bark();
    }
}

$containerBuilder = new \DI\ContainerBuilder();
$containerBuilder->addDefinitions([
    "\Foo\IDog" => \DI\autowire("\Foo\Poodle")
]);
$container = $containerBuilder->build();

//Works:
$mydog = $container->get("\Foo\IDog");
$mydog->bark();

//Does not work:
$kennel = $container->get("\Foo\Kennel");
$kennel->pokeDog();

奇怪的是,如果我从中删除所有命名空间,它工作正常(这里没有命名空间:https ://gist.github.com/brentk/51f58fafeee8029d7e8b1e838eca3d5b )。

知道我做错了什么吗?

4

1 回答 1

2

我认为这是因为您的类名在您的配置"\Foo\IDog"中无效:无效,"Foo\IDog"是。

当在代码中时也有效\Foo\IDog,但仅在字符串中时Foo\IDog有效。

避免这种情况的一种安全方法是使用\Foo\IDog::class. 这样 PHP 会告诉你该类不存在。

于 2018-08-22T07:24:14.373 回答