Skip to content

Commit d24e955

Browse files
committed
add test return types
1 parent cb5595f commit d24e955

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Test/MakerTestProcess.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,17 +54,17 @@ public function run($allowToFail = false, array $envVars = []): self
5454
return $this;
5555
}
5656

57-
public function isSuccessful()
57+
public function isSuccessful(): bool
5858
{
5959
return $this->process->isSuccessful();
6060
}
6161

62-
public function getOutput()
62+
public function getOutput(): string
6363
{
6464
return $this->process->getOutput();
6565
}
6666

67-
public function getErrorOutput()
67+
public function getErrorOutput(): string
6868
{
6969
return $this->process->getErrorOutput();
7070
}

0 commit comments

Comments
 (0)