| 1 | <?php |
||
| 5 | abstract class Entity |
||
| 6 | {
|
||
| 7 | /** @var array */ |
||
| 8 | protected $data; |
||
| 9 | |||
| 10 | 190 | public function __construct(array $data) |
|
| 14 | |||
| 15 | /** |
||
| 16 | * Returns the original response that was passed into the Entity |
||
| 17 | * @return array |
||
| 18 | */ |
||
| 19 | 1 | public function getData() |
|
| 23 | |||
| 24 | 2 | public function __get($name) |
|
| 28 | |||
| 29 | 2 | public function __call($name, $arguments) |
|
| 39 | } |