Skip to content

Commit 36b403d

Browse files
authored
Expose the underlying output implementation (#39099)
1 parent 9b85771 commit 36b403d

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

src/Illuminate/Console/OutputStyle.php

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,4 +68,14 @@ public function isDebug()
6868
{
6969
return $this->output->isDebug();
7070
}
71+
72+
/**
73+
* Get the underlying Symfony output implementation.
74+
*
75+
* @return \Symfony\Component\Console\Output\OutputInterface
76+
*/
77+
public function getOutput()
78+
{
79+
return $this->output;
80+
}
7181
}

0 commit comments

Comments
 (0)