Apple_Push_API\API::get_article PHP Method

get_article() public method

Gets article information.
Since: 0.2.0
public get_article ( integer $article_id ) : object
$article_id integer
return object
    public function get_article($article_id)
    {
        $url = $this->endpoint . '/articles/' . $article_id;
        return $this->send_get_request($url);
    }