Total Complexity | 4 |
Total Lines | 37 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | class Sync extends Command |
||
8 | { |
||
9 | /** |
||
10 | * {@inheritdoc} |
||
11 | */ |
||
12 | protected $signature = 'contentful:sync {--preview} {--no-switch} {--no-truncate}'; |
||
13 | |||
14 | /** |
||
15 | * {@inheritdoc} |
||
16 | */ |
||
17 | protected $description = 'Synchronize Contentful process (locales, raw fetch, map and persist)'; |
||
18 | |||
19 | /** |
||
20 | * Execute the console command. |
||
21 | * |
||
22 | * @return void |
||
23 | */ |
||
24 | public function handle() |
||
46 |