Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
53 | public function __construct(array $data) |
||
54 | { |
||
55 | parent::__construct($data); |
||
56 | |||
57 | $this->token = $this->getDataProperty('access_token'); |
||
58 | $this->tokenType = $this->getDataProperty('token_type'); |
||
59 | $this->bearer = $this->getDataProperty('bearer'); |
||
60 | $this->uid = $this->getDataProperty('uid'); |
||
61 | $this->accountId = $this->getDataProperty('account_id'); |
||
62 | $this->teamId = $this->getDataProperty('team_id'); |
||
63 | } |
||
64 | |||
125 |