Newscoop\Entity\Comment\Commenter::setUrl PHP Method

setUrl() public method

Set comment user url
public setUrl ( string $url ) : Newscoop\Entity\Comment\Commenter
$url string
return Newscoop\Entity\Comment\Commenter
    public function setUrl($url)
    {
        $this->url = (string) $url;
        return $this;
    }

Usage Example

 public function setUrl($p_url)
 {
     $this->__load();
     return parent::setUrl($p_url);
 }