Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
15 | public function __construct(string $providerId, string $email, string $firstname, string $lastname, string $pictureUrl = null) |
||
16 | { |
||
17 | $this->providerId = $providerId; |
||
18 | $this->email = $email; |
||
19 | $this->firstname = $firstname; |
||
20 | $this->lastname = $lastname; |
||
21 | $this->pictureUrl = $pictureUrl; |
||
22 | } |
||
51 |