| Total Complexity | 2 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | class AbstractOnBatchSubRequestProcessEvent implements JsonRpcServerEvent |
||
| 10 | { |
||
| 11 | /** @var int */ |
||
| 12 | private $itemPosition; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @param int $itemPosition |
||
| 16 | */ |
||
| 17 | 10 | public function __construct(int $itemPosition) |
|
| 18 | { |
||
| 19 | 10 | $this->itemPosition = $itemPosition; |
|
| 20 | } |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @return int |
||
| 24 | */ |
||
| 25 | 2 | public function getItemPosition() : int |
|
| 28 | } |
||
| 29 | } |
||
| 30 |