src/Facebook/InstantArticles/Elements/Image.php [141:181]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            ]
        );
        $this->presentation = $presentation;

        return $this;
    }

    /**
     * Makes like enabled for this image.
     * @deprecated This feature has been deprecated as InstantArticles doesn't support likes, comments and shares to individual media content.
     */
    public function enableLike()
    {
        return $this;
    }

    /**
     * Makes like disabled for this image.
     * @deprecated This feature has been deprecated as InstantArticles doesn't support likes, comments and shares to individual media content.
     */
    public function disableLike()
    {
        return $this;
    }

    /**
     * Makes comments enabled for this image.
     * @deprecated This feature has been deprecated as InstantArticles doesn't support likes, comments and shares to individual media content.
     */
    public function enableComments()
    {
        return $this;
    }

    /**
     * Makes comments disabled for this image.
     * @deprecated This feature has been deprecated as InstantArticles doesn't support likes, comments and shares to individual media content.
     */
    public function disableComments()
    {
        return $this;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/Facebook/InstantArticles/Elements/Video.php [171:219]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            ]
        );
        $this->presentation = $presentation;

        return $this;
    }

    /**
     * Makes like enabled for this video.
     *
     * @return $this
     * @deprecated This feature has been deprecated as InstantArticles doesn't support likes, comments and shares to individual media content.
     */
    public function enableLike()
    {
        return $this;
    }

    /**
     * Makes like disabled for this video.
     *
     * @return $this
     * @deprecated This feature has been deprecated as InstantArticles doesn't support likes, comments and shares to individual media content.
     */
    public function disableLike()
    {
        return $this;
    }

    /**
     * Makes comments enabled for this video.
     *
     * @return $this
     * @deprecated This feature has been deprecated as InstantArticles doesn't support likes, comments and shares to individual media content.
     */
    public function enableComments()
    {
        return $this;
    }

    /**
     * Makes comments disabled for this video.
     *
     * @return $this
     * @deprecated This feature has been deprecated as InstantArticles doesn't support likes, comments and shares to individual media content.
     */
    public function disableComments()
    {
        return $this;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



