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

withHeader() public method

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