aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/mikespub/php-epub-meta/src/Dom/XPath.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/mikespub/php-epub-meta/src/Dom/XPath.php')
-rw-r--r--vendor/mikespub/php-epub-meta/src/Dom/XPath.php32
1 files changed, 0 insertions, 32 deletions
diff --git a/vendor/mikespub/php-epub-meta/src/Dom/XPath.php b/vendor/mikespub/php-epub-meta/src/Dom/XPath.php
deleted file mode 100644
index 4d208c1cd..000000000
--- a/vendor/mikespub/php-epub-meta/src/Dom/XPath.php
+++ /dev/null
@@ -1,32 +0,0 @@
-<?php
-/**
- * PHP EPub Meta library
- *
- * @author Andreas Gohr <andi@splitbrain.org>
- * @author Sébastien Lucas <sebastien@slucas.fr>
- */
-
-namespace SebLucas\EPubMeta\Dom;
-
-use DOMDocument;
-use DOMXPath;
-
-/**
- * EPUB-specific subclass of DOMXPath
- *
- * Source: https://github.com/splitbrain/php-epub-meta
- * @author Andreas Gohr <andi@splitbrain.org> © 2012
- * @author Simon Schrape <simon@epubli.com> © 2015–2018
- * @author Sébastien Lucas <sebastien@slucas.fr>
- */
-class XPath extends DOMXPath
-{
- public function __construct(DOMDocument $doc)
- {
- parent::__construct($doc);
-
- foreach (Element::$namespaces as $prefix => $namespaceUri) {
- $this->registerNamespace($prefix, $namespaceUri);
- }
- }
-}