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