Skip to content

Commit 1de7e49

Browse files
authored
Merge pull request #16 from kaushikindianic/patch-2
symfony 5 version return 0
2 parents a9cbfc7 + 554b823 commit 1de7e49

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/Command/SchemaLoadCommand.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ public function execute(InputInterface $input, OutputInterface $output)
103103

104104
if (!count($queries)) {
105105
$output->writeln("<info>No schema changes required</info>");
106-
return;
106+
return 0;
107107
}
108108

109109
if ($apply) {
@@ -123,5 +123,6 @@ public function execute(InputInterface $input, OutputInterface $output)
123123
$output->writeln($query);
124124
}
125125
}
126+
return 0;
126127
}
127128
}

0 commit comments

Comments
 (0)