| Total Complexity | 3 |
| Total Lines | 20 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 8 | class CustomResourceOwner extends GenericResourceOwner |
||
| 9 | { |
||
| 10 | use ArrayAccessorTrait; |
||
| 11 | |||
| 12 | protected $response; |
||
| 13 | protected $domain; |
||
| 14 | |||
| 15 | public function __construct(array $response = []) |
||
| 18 | } |
||
| 19 | |||
| 20 | public function toArray() |
||
| 21 | { |
||
| 22 | return $this->response; |
||
| 23 | } |
||
| 24 | |||
| 25 | public function setDomain($domain) |
||
| 28 | } |
||
| 29 | } |
||
| 30 |