Horde_Release_Sentinel::changesFileExists PHP Метод

changesFileExists() публичный Метод

Indicates if there is a CHANGES file for this component.
public changesFileExists ( ) : string | boolean
Результат 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;
    }