loader = $loader; parent::__construct(); } public function configure(): void { $this->setName('chill:main:postal-code:load:FR') ->setDescription('Load France\'s postal code from online open data'); } public function execute(InputInterface $input, OutputInterface $output): int { $this->loader->import(); return 0; } }