Knp\Bundle\KnpBundlesBundle\Entity\Bundle::getTravisUrl PHP Méthode

getTravisUrl() public méthode

Get the Travis Ci url of this bundle
public getTravisUrl ( ) : string
Résultat string
    public function getTravisUrl()
    {
        return $this->usesTravisCi ? sprintf('http://travis-ci.org/%s/%s', $this->ownerName, $this->name) : false;
    }