Horde_Release_Sentinel::changesFileExists PHP Method

changesFileExists() public method

Indicates if there is a CHANGES file for this component.
public changesFileExists ( ) : string | boolean
return string | boolean The path to the CHANGES file if it exists, false otherwise.
    public function changesFileExists()
    {
        $changes = $this->_component . self::CHANGES;
        if (file_exists($changes)) {
            return $changes;
        }
        return false;
    }