From cf1ede0ba8c687d9bfadf1c372546657968f1dd8 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Fri, 26 Feb 2021 17:35:58 +0300 Subject: pull latest readability-php via composer --- .../andreskrey/readability.php/test/TestPage.php | 61 ++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 plugins/af_readability/vendor/andreskrey/readability.php/test/TestPage.php (limited to 'plugins/af_readability/vendor/andreskrey/readability.php/test/TestPage.php') diff --git a/plugins/af_readability/vendor/andreskrey/readability.php/test/TestPage.php b/plugins/af_readability/vendor/andreskrey/readability.php/test/TestPage.php new file mode 100644 index 000000000..ed6f92e7c --- /dev/null +++ b/plugins/af_readability/vendor/andreskrey/readability.php/test/TestPage.php @@ -0,0 +1,61 @@ +configuration = $configuration; + $this->sourceHTML = $sourceHTML; + $this->expectedHTML = $expectedHTML; + $this->expectedImages = $expectedImages; + $this->expectedMetadata = $expectedMetadata; + } + + /** + * @return array + */ + public function getConfiguration() + { + return $this->configuration; + } + + /** + * @return null + */ + public function getSourceHTML() + { + return $this->sourceHTML; + } + + /** + * @return null + */ + public function getExpectedHTML() + { + return $this->expectedHTML; + } + + /** + * @return mixed + */ + public function getExpectedImages() + { + return $this->expectedImages; + } + + /** + * @return \stdClass + */ + public function getExpectedMetadata() + { + return $this->expectedMetadata; + } +} -- cgit v1.2.3