| Total Complexity | 9 | 
| Total Lines | 78 | 
| Duplicated Lines | 0 % | 
| Changes | 0 | ||
| 1 | <?php  | 
            ||
| 13 | trait UserHelpers  | 
            ||
| 14 | { | 
            ||
| 15 | use CanResetPassword;  | 
            ||
| 16 | |||
| 17 | /**  | 
            ||
| 18 | * @inheritdoc  | 
            ||
| 19 | */  | 
            ||
| 20 | public function retrieveId()  | 
            ||
| 21 |     { | 
            ||
| 22 | return $this->id;  | 
            ||
| 23 | }  | 
            ||
| 24 | |||
| 25 | /**  | 
            ||
| 26 | * @inheritdoc  | 
            ||
| 27 | */  | 
            ||
| 28 | public function retrieveRemoteId()  | 
            ||
| 29 |     { | 
            ||
| 30 | return $this->remote_id;  | 
            ||
| 31 | }  | 
            ||
| 32 | |||
| 33 | /**  | 
            ||
| 34 | * @inheritdoc  | 
            ||
| 35 | */  | 
            ||
| 36 | public function retrieveName()  | 
            ||
| 39 | }  | 
            ||
| 40 | |||
| 41 | /**  | 
            ||
| 42 | * @inheritdoc  | 
            ||
| 43 | */  | 
            ||
| 44 | public function retrieveEmail()  | 
            ||
| 45 |     { | 
            ||
| 46 | return $this->email;  | 
            ||
| 47 | }  | 
            ||
| 48 | |||
| 49 | /**  | 
            ||
| 50 | * @inheritdoc  | 
            ||
| 51 | */  | 
            ||
| 52 | public function retrievePassword()  | 
            ||
| 53 |     { | 
            ||
| 54 | return $this->password;  | 
            ||
| 55 | }  | 
            ||
| 56 | |||
| 57 | /**  | 
            ||
| 58 | * @inheritdoc  | 
            ||
| 59 | */  | 
            ||
| 60 | public function retrieveCreatedAt()  | 
            ||
| 61 |     { | 
            ||
| 62 | return $this->created_at;  | 
            ||
| 63 | }  | 
            ||
| 64 | |||
| 65 | /**  | 
            ||
| 66 | * @inheritdoc  | 
            ||
| 67 | */  | 
            ||
| 68 | public function retrieveUpdatedAt()  | 
            ||
| 71 | }  | 
            ||
| 72 | |||
| 73 | /**  | 
            ||
| 74 | * @inheritdoc  | 
            ||
| 75 | */  | 
            ||
| 76 | public function retrieveDeletedAt()  | 
            ||
| 79 | }  | 
            ||
| 80 | |||
| 81 | /**  | 
            ||
| 82 | * Send the password reset notification.  | 
            ||
| 83 | *  | 
            ||
| 84 | * @param string $token  | 
            ||
| 85 | *  | 
            ||
| 86 | * @return void  | 
            ||
| 87 | */  | 
            ||
| 88 | public function sendPasswordResetNotification($token)  | 
            ||
| 91 | }  | 
            ||
| 92 | }  |