/**
* Sets the Update Information
*
* @param null $info stores update Information
*
* @return void
*
* @since 4.0.0
*/
public function setUpdateInfo($info = null) : void
{
if (!$info) {
$this->updateInfo = $this->getUpdateInformationFromModel();
} else {
$this->updateInfo = $info;
}
}