Habari\Comments::by_url PHP Метод

by_url() публичный статический Метод

select all comments from an author's URL
public static by_url ( string $url = '' ) : array
$url string a URL
Результат 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));
    }