| 1 | <?php |
||
| 6 | class ArrayJob implements AdapterJob |
||
| 7 | { |
||
| 8 | /** @var string */ |
||
| 9 | protected $identifier; |
||
| 10 | |||
| 11 | /** @var string */ |
||
| 12 | protected $payload; |
||
| 13 | |||
| 14 | 3 | public function __construct($identifier, $payload) |
|
| 19 | |||
| 20 | /** |
||
| 21 | * @return string |
||
| 22 | */ |
||
| 23 | 1 | public function getIdentifier() |
|
| 27 | |||
| 28 | /** |
||
| 29 | * {@inheritdoc} |
||
| 30 | */ |
||
| 31 | 3 | public function payload(): string |
|
| 35 | } |
||
| 36 |