N°4076 - PHPDoc

This commit is contained in:
Eric
2021-07-26 17:48:36 +02:00
parent 344cce9fdd
commit ee544b646d
3 changed files with 42 additions and 13 deletions

View File

@@ -1173,6 +1173,13 @@ EOF
return $oBlock;
}
/**
* @param string $sKey
* @param $value
*
* @return \iTopWebPage
* @since 3.0.0
*/
public function SetBlockParam(string $sKey, $value)
{
$oGlobalSearch = $this->GetTopBarLayout()->GetGlobalSearch();
@@ -1183,6 +1190,6 @@ EOF
break;
}
return parent::SetBlockParam($sKey, $value); // TODO: Change the autogenerated stub
return parent::SetBlockParam($sKey, $value);
}
}