Skip to content

Commit 9c02dce

Browse files
committed
Specify return type.
1 parent 13c0853 commit 9c02dce

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/Command/AlterAuditTableCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ protected function configure()
4747
/**
4848
* @inheritdoc
4949
*/
50-
protected function execute(InputInterface $input, OutputInterface $output)
50+
protected function execute(InputInterface $input, OutputInterface $output): int
5151
{
5252
$this->io = new AuditStyle($input, $output);
5353

src/Command/AuditCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ protected function configure()
3434
/**
3535
* @inheritdoc
3636
*/
37-
protected function execute(InputInterface $input, OutputInterface $output)
37+
protected function execute(InputInterface $input, OutputInterface $output): int
3838
{
3939
$this->io = new AuditStyle($input, $output);
4040

src/Command/DiffCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ protected function configure()
3131
/**
3232
* @inheritdoc
3333
*/
34-
protected function execute(InputInterface $input, OutputInterface $output)
34+
protected function execute(InputInterface $input, OutputInterface $output): int
3535
{
3636
$this->io = new AuditStyle($input, $output);
3737

src/Command/DropTriggersCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ protected function configure()
3131
/**
3232
* @inheritdoc
3333
*/
34-
protected function execute(InputInterface $input, OutputInterface $output)
34+
protected function execute(InputInterface $input, OutputInterface $output): int
3535
{
3636
$this->io = new AuditStyle($input, $output);
3737

0 commit comments

Comments
 (0)