1 | <?php |
||
9 | final class ContentfulDeleteEntryJob extends ContentfulSyncJob |
||
10 | { |
||
11 | |||
12 | /** |
||
13 | * @var string |
||
14 | */ |
||
15 | private $contentType; |
||
16 | |||
17 | /** |
||
18 | * @var string |
||
19 | */ |
||
20 | private $entryId; |
||
21 | |||
22 | /** |
||
23 | * ContentfulDeleteEntryJob constructor. |
||
24 | * |
||
25 | * @param string $contentType |
||
26 | * @param string $entryId |
||
27 | */ |
||
28 | public function __construct(string $contentType, string $entryId) |
||
33 | |||
34 | /** |
||
35 | * @inheritdoc |
||
36 | */ |
||
37 | public function handle(): void |
||
41 | } |
||
42 |