Skip to content

Commit

Permalink
forward compatibility with sf 4.4+
Browse files Browse the repository at this point in the history
  • Loading branch information
flack committed Dec 14, 2019
1 parent 34a8fd1 commit dc497be
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/command/schema.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ protected function configure()
->addOption('delete', null, InputOption::VALUE_NONE, 'Delete columns/tables that are not defined in mgdschema');
}

protected function execute(InputInterface $input, OutputInterface $output)
protected function execute(InputInterface $input, OutputInterface $output) : int
{
if (!$this->connected) {
$path = $input->getArgument('config');
Expand Down Expand Up @@ -114,6 +114,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
$this->generate_proxyfiles($cms);

$output->writeln('Done');
return 0;
}

private function generate_proxyfiles(array $cms)
Expand Down

0 comments on commit dc497be

Please sign in to comment.