| Total Complexity | 7 | 
| Total Lines | 38 | 
| Duplicated Lines | 0 % | 
| Coverage | 100% | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php  | 
            ||
| 7 | class UserInfo extends AbstractObject implements ObjectInterface  | 
            ||
| 8 | { | 
            ||
| 9 | |||
| 10 | |||
| 11 | 3 | public function userId(): string  | 
            |
| 12 |     { | 
            ||
| 13 | 3 | return $this->data->userId;  | 
            |
| 14 | }  | 
            ||
| 15 | |||
| 16 | 3 | public function userName(): string  | 
            |
| 17 |     { | 
            ||
| 18 | 3 | return $this->data->userName;  | 
            |
| 19 | }  | 
            ||
| 20 | |||
| 21 | |||
| 22 | 3 | public function userProfileId(): string  | 
            |
| 23 |     { | 
            ||
| 24 | 3 | return $this->data->userProfileId;  | 
            |
| 25 | }  | 
            ||
| 26 | |||
| 27 | 3 | public function userEmail(): string  | 
            |
| 28 |     { | 
            ||
| 29 | 3 | return $this->data->userEmail;  | 
            |
| 30 | }  | 
            ||
| 31 | |||
| 32 | 3 | public function isBloggerUser(): bool  | 
            |
| 33 |     { | 
            ||
| 34 | 3 | return $this->data->isBloggerUser;  | 
            |
| 35 | }  | 
            ||
| 36 | |||
| 37 | 3 | public function signupTimeSec(): int  | 
            |
| 38 |     { | 
            ||
| 39 | 3 | return $this->data->signupTimeSec;  | 
            |
| 40 | }  | 
            ||
| 41 | |||
| 42 | 3 | public function isMultiLoginEnabled(): bool  | 
            |
| 45 | }  | 
            ||
| 46 | }  | 
            ||
| 47 |