Knp\Bundle\KnpBundlesBundle\Entity\Bundle::getTravisUrl PHP Method

getTravisUrl() public method

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