1 | <?php |
||
7 | class BeanstalkdJob implements AdapterJob |
||
8 | { |
||
9 | /** @var \Pheanstalk\Job */ |
||
10 | protected $job; |
||
11 | |||
12 | public function __construct(PheanstalkJob $job) |
||
16 | |||
17 | /** |
||
18 | * @return \Pheanstalk\Job |
||
19 | */ |
||
20 | public function getJob(): PheanstalkJob |
||
24 | |||
25 | /** |
||
26 | * {@inheritdoc} |
||
27 | */ |
||
28 | public function payload(): string |
||
32 | } |
||
33 |