Horde_Release_Sentinel::bundleFileExists PHP Method

bundleFileExists() public method

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