Skip to content

Commit 1a0c8e8

Browse files
committed
Add isDecorated method on SymfonyOutput class and Output interface
1 parent 4aeefec commit 1a0c8e8

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

src/Output.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,4 +43,5 @@ public function isVerbose(): bool;
4343

4444
public function isDebug(): bool;
4545

46+
public function isDecorated(): bool;
4647
}

src/Symfony/SymfonyOutput.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,4 +87,8 @@ public function isDebug(): bool
8787
return $this->symfonyOutput->isDebug();
8888
}
8989

90+
public function isDecorated(): bool
91+
{
92+
return $this->symfonyOutput->isDecorated();
93+
}
9094
}

0 commit comments

Comments
 (0)