Improve PHPDoc and type hints

This commit is contained in:
Molkobain
2023-05-04 23:16:14 +02:00
parent 8dc7d68b8c
commit 53e2d1103a
3 changed files with 13 additions and 9 deletions

View File

@@ -440,9 +440,12 @@ class Set extends AbstractInput
/**
* @param string $sInitialValue
* @return $this
*/
public function SetInitialValue(string $sInitialValue): void
public function SetInitialValue(string $sInitialValue)
{
$this->sInitialValue = $sInitialValue;
return $this;
}
}