Correct type hint and update PhpDoc

This commit is contained in:
Stephen Abello
2021-03-05 16:31:27 +01:00
parent 57bd868580
commit fe0f57c00d

View File

@@ -93,9 +93,9 @@ class SelectOption extends UIBlock
/**
* @param bool $bDisabled
*
* @return SelectOption
* @return $this
*/
public function SetDisabled(bool $bDisabled): SelectOption
public function SetDisabled(bool $bDisabled)
{
$this->bDisabled = $bDisabled;
return $this;