Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
29 | 3 | protected function execute(InputInterface $input, OutputInterface $output) |
|
30 | { |
||
31 | 3 | $container = $this->getContainer(); |
|
32 | 3 | $manager = $container->get('pdp.public_suffix_list_manager'); |
|
33 | |||
34 | 3 | $output->write('Updating public suffix list... '); |
|
35 | |||
36 | 3 | $manager->refreshPublicSuffixList(); |
|
37 | |||
38 | 3 | $output->writeln('<info>done</info>'); |
|
39 | 3 | } |
|
40 | } |
||
41 |