for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Slides\Connector\Auth\Concerns;
use Slides\Connector\Auth\Notifications\ResetPasswordNotification;
use Illuminate\Auth\Passwords\CanResetPassword;
/**
* Trait UserHelpers
*
* @package Slides\Connector\Auth\Concerns
*/
trait UserHelpers
{
use CanResetPassword;
* @inheritdoc
public function retrieveId()
return $this->id;
}
public function retrieveRemoteId()
return $this->remote_id;
public function retrieveName()
return $this->name;
public function retrieveEmail()
return $this->email;
public function retrievePassword()
return $this->password;
public function retrieveCreatedAt()
return $this->created_at;
public function retrieveUpdatedAt()
return $this->updated_at;
* Send the password reset notification.
* @param string $token
* @return void
public function sendPasswordResetNotification($token)
$this->notify(new ResetPasswordNotification($token));
notify()
If this is a false-positive, you can also ignore this issue in your code via the ignore-call annotation
ignore-call
$this->/** @scrutinizer ignore-call */
notify(new ResetPasswordNotification($token));