Back to CheckJoomlaUpdatesCommand class

Method getUpdateInfo

public mixed
getUpdateInfo
()
Gets the Update Information
Returns
  • mixed
Since
  • 4.0.0

Method getUpdateInfo - Source code

/**
 * Gets the Update Information
 *
 * @return mixed
 *
 * @since 4.0.0
 */
public function getUpdateInfo()
{
    if (!$this->updateInfo) {
        $this->setUpdateInfo();
    }
    return $this->updateInfo;
}