我正在使用审查器来分析我的代码。几乎所有事情都已修复,但我似乎无法解决此问题。
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