Skip to content

Commit 9dace04

Browse files
committed
up: update CmdBuild::runAndPrint return type
1 parent 3ce13df commit 9dace04

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Cmd/AbstractCmdBuilder.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,9 +108,9 @@ public function changeDir(string $workDir): static
108108
/**
109109
* run and print all output
110110
*/
111-
public function runAndPrint(): void
111+
public function runAndPrint(): static
112112
{
113-
$this->run(true);
113+
return $this->run(true);
114114
}
115115

116116
/**

0 commit comments

Comments
 (0)