Alert : remove return type

This commit is contained in:
Pierre Goiffon
2020-12-16 07:56:13 +01:00
parent 102123441d
commit cb4fb15b0a

View File

@@ -175,7 +175,12 @@ class Alert extends UIBlock
return $this->bIsOpenedByDefault;
}
public function SetOpenedByDefault(bool $bIsOpenedByDefault): Alert
/**
* @param bool $bIsOpenedByDefault
*
* @return $this
*/
public function SetOpenedByDefault(bool $bIsOpenedByDefault)
{
$this->bIsOpenedByDefault = $bIsOpenedByDefault;