summaryrefslogtreecommitdiff
path: root/vendor/league/commonmark/src/DocParserInterface.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/league/commonmark/src/DocParserInterface.php')
-rw-r--r--vendor/league/commonmark/src/DocParserInterface.php26
1 files changed, 0 insertions, 26 deletions
diff --git a/vendor/league/commonmark/src/DocParserInterface.php b/vendor/league/commonmark/src/DocParserInterface.php
deleted file mode 100644
index 23725ad476..0000000000
--- a/vendor/league/commonmark/src/DocParserInterface.php
+++ /dev/null
@@ -1,26 +0,0 @@
-<?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.
- */
-
-namespace League\CommonMark;
-
-use League\CommonMark\Block\Element\Document;
-
-interface DocParserInterface
-{
- /**
- * @param string $input
- *
- * @throws \RuntimeException
- *
- * @return Document
- */
- public function parse(string $input): Document;
-}