Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
49 | 26 | public function __construct(string $name, string $email, string $bio, string $id = null, DateTime $birthdate = null) |
|
50 | { |
||
51 | 26 | $this->setId($id); |
|
52 | 24 | $this->setName($name); |
|
53 | 24 | $this->setEmail($email); |
|
54 | 24 | $this->setBio($bio); |
|
55 | 24 | $this->setBirthdate($birthdate); |
|
56 | 24 | } |
|
57 | |||
133 |