<?php/* * This file is part of the league/commonmark package. * * (c) Colin O'Dell <colinodell@gmail.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */namespaceLeague\CommonMark\Event;useLeague\CommonMark\Block\Element\Document;/** * Event dispatched when the document has been fully parsed */finalclassDocumentParsedEventextendsAbstractEvent{/** @var Document */private$document;publicfunction__construct(Document$document){$this->document=$document;}publicfunctiongetDocument():Document{return$this->document;}}