src/Facebook/InstantArticles/Transformer/Warnings/NoRootInstantArticleFoundWarning.php [19:53]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    private $element;

    /**
     * @var array the configuration content
     */
    private $configuration;

    /**
     * @param Element $element
     * @param DOMNode $node
     */
    public function __construct($element, $node = null)
    {
        parent::__construct($node);
        $this->element = $element;
    }

    /**
     * @return string
     */
    public function __toString()
    {
        return $this->formatWarningMessage();
    }

    /**
     * @return Element
     */
    public function getElement()
    {
        return $this->element;
    }


    private function formatWarningMessage()
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/Facebook/InstantArticles/Transformer/Warnings/ValidatorWarning.php [19:52]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    private $element;

    /**
     * @var array the configuration content
     */
    private $configuration;

    /**
     * @param Element $element
     * @param DOMNode $node
     */
    public function __construct($element, $node = null)
    {
        parent::__construct($node);
        $this->element = $element;
    }

    /**
     * @return string
     */
    public function __toString()
    {
        return $this->formatWarningMessage();
    }

    /**
     * @return Element
     */
    public function getElement()
    {
        return $this->element;
    }

    private function formatWarningMessage()
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



