REBELinBLUE\Deployer\Project::getRepositoryUrlAttribute PHP Метод

getRepositoryUrlAttribute() публичный Метод

Gets the HTTP URL to the repository.
См. также: Project::accessDetails()
public getRepositoryUrlAttribute ( ) : string | false
Результат string | false
    public function getRepositoryUrlAttribute()
    {
        $info = $this->accessDetails();
        if (isset($info['domain']) && isset($info['reference'])) {
            return 'http://' . $info['domain'] . '/' . $info['reference'];
        }
        return false;
    }