Use strict type hinting in all tests.
All checks were successful
The build was successful.

This commit is contained in:
2018-09-14 21:32:08 +02:00
parent 8b48786f29
commit ca00cadba7
5 changed files with 6 additions and 6 deletions

View File

@@ -17,7 +17,7 @@ final class Test {
return $this->value;
}
public function set($value = 0) {
public function set(int $value = 0) {
$this->value = $value;
}
}