Habari\Comments::by_url PHP Method

by_url() public static method

select all comments from an author's URL
public static by_url ( string $url = '' ) : array
$url string a URL
return array array an array of Comment objects with the same URL
    public static function by_url($url = '')
    {
        if (!$url) {
            return false;
        }
        return self::get(array("url" => $url));
    }