| Total Complexity | 3 |
| Total Lines | 28 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 5 | abstract class Common |
||
| 6 | { |
||
| 7 | const VERSION = '2.0'; |
||
| 8 | |||
| 9 | /** |
||
| 10 | * Jsonrpc version. |
||
| 11 | * @var string |
||
| 12 | */ |
||
| 13 | public $jsonrpc; |
||
| 14 | |||
| 15 | /** |
||
| 16 | * @var int|string|null |
||
| 17 | */ |
||
| 18 | public $id; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * Set properties using arbitrary dataset. |
||
| 22 | * @param mixed $data |
||
| 23 | * @return static |
||
| 24 | */ |
||
| 25 | public function setProperties($data): self |
||
| 35 |