Skip to content

Commit efd3532

Browse files
committed
bug #1749 Updated MigrationDiffFilteredOutput to implement all methods from OutputInterface (Josh McRae)
This PR was merged into the 1.x branch. Discussion ---------- Updated MigrationDiffFilteredOutput to implement all methods from OutputInterface This PR adds an implementation for `OutputInterface::isSilent()` which is currently missing from the `MigrationDiffFilteredOutput` class. Currently, the `./bin/console make:migration` command is failing when the latest version of `symfony/console` is installed because the class is incomplete. Commits ------- 2ac15a2 Added missing method from OutputInterface
2 parents edad857 + 2ac15a2 commit efd3532

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/Console/MigrationDiffFilteredOutput.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,11 @@ public function getVerbosity(): int
5353
return $this->output->getVerbosity();
5454
}
5555

56+
public function isSilent(): bool
57+
{
58+
return $this->output->isSilent();
59+
}
60+
5661
public function isQuiet(): bool
5762
{
5863
return $this->output->isQuiet();

0 commit comments

Comments
 (0)