Horde_Release_Sentinel::applicationFileExists PHP Method

applicationFileExists() public method

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