Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
45 | public function __construct(array $response) |
||
46 | { |
||
47 | $this->response = $response; |
||
48 | $this->userData = reset($this->response['users']); |
||
49 | |||
50 | $this->id = intval($this->response['uid']); |
||
51 | |||
52 | $this->firstName = $this->getField('name'); |
||
53 | |||
54 | $this->lastName = $this->getField('surname'); |
||
55 | |||
56 | $this->username = preg_replace('/[^a-z\d]/i', '', $this->getField('url')); |
||
57 | } |
||
131 |