PHPSA\Application::getStringVersion PHP Method

getStringVersion() protected method

Returns the version as a string.
protected getStringVersion ( ) : string
return string
    protected function getStringVersion()
    {
        $hash = $this->getCVVersion();
        if (!empty($hash)) {
            return self::VERSION . ' #' . $hash;
        }
        return self::VERSION;
    }