Skip to content

Commit bfda162

Browse files
committed
allowing php 7.1 + symfony 4 compat
1 parent cb45af5 commit bfda162

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Console/MigrationDiffFilteredOutput.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,21 +25,21 @@ public function __construct(OutputInterface $output)
2525
$this->output = $output;
2626
}
2727

28-
public function write($messages, bool $newline = false, int $options = 0)
28+
public function write($messages, $newline = false, $options = 0)
2929
{
3030
$messages = $this->filterMessages($messages, $newline);
3131

3232
$this->output->write($messages, $newline, $options);
3333
}
3434

35-
public function writeln($messages, int $options = 0)
35+
public function writeln($messages, $options = 0)
3636
{
3737
$messages = $this->filterMessages($messages, true);
3838

3939
$this->output->writeln($messages, $options);
4040
}
4141

42-
public function setVerbosity(int $level)
42+
public function setVerbosity($level)
4343
{
4444
$this->output->setVerbosity($level);
4545
}
@@ -69,7 +69,7 @@ public function isDebug()
6969
return $this->output->isDebug();
7070
}
7171

72-
public function setDecorated(bool $decorated)
72+
public function setDecorated($decorated)
7373
{
7474
$this->output->setDecorated($decorated);
7575
}

0 commit comments

Comments
 (0)