Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
18 | public function __construct(array $response) |
||
19 | { |
||
20 | $data = $response['data']; |
||
21 | |||
22 | $this->id = $data['id']; |
||
23 | $this->username = $data['username']; |
||
24 | $this->email = $data['email']; |
||
25 | $this->credits = $data['credits']; |
||
26 | $this->links = $data['links']; |
||
27 | $this->createdAt = new \DateTime($data['created_at']); |
||
28 | } |
||
78 |