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