| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Code Lines | 11 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 30 | public function __construct( |
||
| 31 | GithubUserId $githubUserId, |
||
| 32 | string $username, |
||
| 33 | string $email = null, |
||
| 34 | string $name = null, |
||
| 35 | string $avatarUrl = null |
||
| 36 | ) { |
||
| 37 | $this->githubUserId = $githubUserId; |
||
| 38 | $this->username = $username; |
||
| 39 | $this->email = $email; |
||
| 40 | $this->name = $name; |
||
| 41 | $this->avatarUrl = $avatarUrl; |
||
| 42 | } |
||
| 43 | |||
| 84 |