Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/Command/Output.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,6 @@ public function isVerbose(): bool;

public function isDebug(): bool;

public function isDecorated(): bool;

}
5 changes: 5 additions & 0 deletions src/Command/Symfony/SymfonyOutput.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,9 @@ public function isDebug(): bool
return $this->symfonyOutput->isDebug();
}

public function isDecorated(): bool
{
return $this->symfonyOutput->isDecorated();
}

}
Loading