Habari\Version::is_devel PHP Method

is_devel() public static method

Determine whether this might possibly have a .git directory, based solely on the existence of a hyphen in the release version string.
public static is_devel ( ) : boolean
return boolean True if this is a development version, false if not
    public static function is_devel()
    {
        return strpos(Version::HABARI_RELEASE, '-') !== false;
    }