| Total Complexity | 2 |
| Total Lines | 22 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 15 | final class Client extends \veejay\jsonrpc\Client |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * @var array|object|null |
||
| 19 | */ |
||
| 20 | public $_data; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @param string $name |
||
| 24 | * @return mixed |
||
| 25 | */ |
||
| 26 | public function __get($name) |
||
| 27 | { |
||
| 28 | return $this->$name; |
||
| 29 | } |
||
| 30 | |||
| 31 | /** |
||
| 32 | * {@inheritdoc} |
||
| 33 | */ |
||
| 34 | protected function sendData() |
||
| 37 | } |
||
| 38 | } |
||
| 39 |