Skip to content

Commit 6c57662

Browse files
authored
Merge pull request #33 from kornrunner/master
Symfony 5 compat
2 parents aaf6655 + cb3a51c commit 6c57662

File tree

5 files changed

+5
-0
lines changed

5 files changed

+5
-0
lines changed

src/Console/Command/Create.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,5 +67,6 @@ protected function execute(InputInterface $input, OutputInterface $output)
6767

6868
// show result
6969
$output->writeln('New migration created at ' . $migrationFilePath);
70+
return 0;
7071
}
7172
}

src/Console/Command/Init.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -152,5 +152,6 @@ protected function execute(InputInterface $input, OutputInterface $output)
152152
$this->getManager()->getMigrationsDir()
153153
)
154154
);
155+
return 0;
155156
}
156157
}

src/Console/Command/Migrate.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,5 +53,6 @@ protected function execute(InputInterface $input, OutputInterface $output)
5353
$output->writeln('done.');
5454
})
5555
->migrate($revision, $environment);
56+
return 0;
5657
}
5758
}

src/Console/Command/Rollback.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,5 +53,6 @@ protected function execute(InputInterface $input, OutputInterface $output)
5353
$output->writeln('done.');
5454
})
5555
->rollback($revision, $environment);
56+
return 0;
5657
}
5758
}

src/Console/Command/Status.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,5 +85,6 @@ protected function execute(InputInterface $input, OutputInterface $output)
8585
}
8686

8787
$output->writeln('');
88+
return 0;
8889
}
8990
}

0 commit comments

Comments
 (0)