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