Skip to content

Commit f47343b

Browse files
committed
Add constructor for ActionService
1 parent d2768d0 commit f47343b

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/ActionService.php

+5
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,11 @@ class ActionService
1818
{
1919
private ?OutputInterface $output;
2020

21+
public function __construct(OutputInterface $output = null)
22+
{
23+
$this->output = $output;
24+
}
25+
2126
public function setOutput(OutputInterface $output): void
2227
{
2328
$this->output = $output;

0 commit comments

Comments
 (0)