CI访问接口上的属性

时间:2015-06-11 07:16:14

标签: php laravel interface scrutinizer

我正在使用scrutinizer来分析我的代码。几乎所有事情都已修复,但我似乎无法解决这个问题。

Accessing id on the interface Illuminate\Contracts\Auth\Authenticatable suggest that you code against a concrete implementation. How about adding an instanceof check?

我看到问题是因为它是一个不存在的接口,但我的代码工作得很好。那么在分析我的代码时如何让这段代码通过呢?

由于

修改

在这些行上出现错误(其他一些文件几乎相同)

$this->tracert->log(
            'users',
            $this->auth->user()->id,
            $this->auth->user()->id,
            'Login'
        );

该类的构造函数

 /**
 * @param \Illuminate\Contracts\Auth\Guard $auth
 * @param \jorenvanhocht\Tracert\Tracert $tracert
 */
public function __construct(Guard $auth, Tracert $tracert)
{
    parent::__construct($auth);
    $this->tracert = $tracert;
}

我的基本控制器的构造函数:

public function __construct(Guard $auth)
{
    $this->auth = $auth;
    $this->config = objectify(config('blogify'));
    $this->auth_user = $this->auth->check() ? $this->auth->user() : false;
}

已使用的合约https://github.com/illuminate/contracts/blob/master/Auth/Guard.php

1 个答案:

答案 0 :(得分:6)

要修复已通过身份验证的用户的ID问题,您应该使用:

$this->auth->user()->getAuthIdentifier()

Interface由方法组成。您正在直接访问属性。例如$foo->id而不是$foo->getId()。当然,你必须在接口上添加新方法。

解决方法是对scrutinizer说, $ object是所需类的实例

if ($object instanceof MyClass) {
    //
}