-1

当我运行这段代码

class Kernel
{
    private $settings = array();

    public function handle(Settings $conf)
    {
        $this->settings = $conf;
        return $this;
    }


    public function run()
    {
        var_dump($this->settings);
    }
}


class Settings
{
    public static function appConfig()
    {
        return array(
            'database' => array(
                'hostname' => 'localhost',
                'username' => 'root',
                'password' => 'test',
                'database' => 'testdb'
            )
        );
    }
}

$kernel = new Kernel;
$kernel->handle(Settings::appConfig())->run();

我收到错误

Catchable fatal error: Argument 1 passed to Kernel::handle() must be an instance of Settings, array given, called in....

这是否意味着类型提示仅适用于实例而不适用于静态方法?如果现在如何实现静态方法的类型提示?

4

3 回答 3

0

好吧,错误文本解释了它。你在这里传递一个数组:

$kernel->handle(Settings::appConfig())->run();

因为您的Settings::appConfig()方法返回一个数组。你必须在那里传递一个实例。

于 2013-06-13T12:32:52.170 回答
0

$conf 需要是 Settings 对象的实例以防止错误。

处理方法类提示意味着只接受设置类的对象实例。如果要使用带有句柄方法的数组,则需要进行此更改。

public function handle(Settings $conf)

public function handle(array $conf)
于 2013-06-13T12:34:43.333 回答
0

这会起作用:

public function handle(array $conf)
{
    $this->settings = $conf;
    return $this;
}
于 2013-06-13T12:34:51.173 回答