Habari\Version::is_devel PHP Метод

is_devel() публичный статический Метод

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
Результат boolean True if this is a development version, false if not
    public static function is_devel()
    {
        return strpos(Version::HABARI_RELEASE, '-') !== false;
    }