Facebook\InstantArticles\Elements\InstantArticle::withFooter PHP Method

withFooter() public method

Sets the footer content to this InstantArticle
public withFooter ( Facebook\InstantArticles\Elements\Footer $footer )
$footer Facebook\InstantArticles\Elements\Footer to be added to this Article.
    public function withFooter($footer)
    {
        Type::enforce($footer, Footer::getClassName());
        $this->footer = $footer;
        return $this;
    }