| Total Complexity | 5 |
| Total Lines | 29 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | class BatchJobContext |
||
| 8 | { |
||
| 9 | protected $batch; |
||
| 10 | protected $configuration; |
||
| 11 | |||
| 12 | public function __construct(BatchEntity $batchEntity, ByteArrayEntity $configuration) |
||
| 16 | } |
||
| 17 | |||
| 18 | public function getBatch(): BatchEntity |
||
| 19 | { |
||
| 20 | return $this->batch; |
||
| 21 | } |
||
| 22 | |||
| 23 | public function setBatch(BatchEntity $batch): void |
||
| 26 | } |
||
| 27 | |||
| 28 | public function getConfiguration(): ByteArrayEntity |
||
| 31 | } |
||
| 32 | |||
| 33 | public function setConfiguration(ByteArrayEntity $configuration): void |
||
| 38 |