X-Git-Url: https://git.wh0rd.org/?a=blobdiff_plain;f=vendor%2Fandreskrey%2FReadability%2FConfiguration.php;fp=vendor%2Fandreskrey%2FReadability%2FConfiguration.php;h=951740ed0876ba0574a6891e3835427e6f0189aa;hb=2aaefbfa54447c37a74aaf126f864fac629e9bd5;hp=0000000000000000000000000000000000000000;hpb=d00d515320adb57165f7a69bd1c9afc72d51b87f;p=tt-rss.git diff --git a/vendor/andreskrey/Readability/Configuration.php b/vendor/andreskrey/Readability/Configuration.php new file mode 100644 index 00000000..951740ed --- /dev/null +++ b/vendor/andreskrey/Readability/Configuration.php @@ -0,0 +1,348 @@ + $value) { + $setter = sprintf('set%s', $key); + if (method_exists($this, $setter)) { + call_user_func([$this, $setter], $value); + } + } + } + + /** + * Returns an array-representation of configuration. + * + * @return array + */ + public function toArray() + { + $out = []; + foreach ($this as $key => $value) { + $getter = sprintf('get%s', $key); + if (!is_object($value) && method_exists($this, $getter)) { + $out[$key] = call_user_func([$this, $getter]); + } + } + + return $out; + } + + /** + * @return LoggerInterface + */ + public function getLogger() + { + // If no logger has been set, just return a null logger + if ($this->logger === null) { + return new NullLogger(); + } else { + return $this->logger; + } + } + + /** + * @param LoggerInterface $logger + * + * @return Configuration + */ + public function setLogger(LoggerInterface $logger) + { + $this->logger = $logger; + + return $this; + } + + /** + * @return int + */ + public function getMaxTopCandidates() + { + return $this->maxTopCandidates; + } + + /** + * @param int $maxTopCandidates + * + * @return $this + */ + public function setMaxTopCandidates($maxTopCandidates) + { + $this->maxTopCandidates = $maxTopCandidates; + + return $this; + } + + /** + * @return int + */ + public function getWordThreshold() + { + return $this->wordThreshold; + } + + /** + * @param int $wordThreshold + * + * @return $this + */ + public function setWordThreshold($wordThreshold) + { + $this->wordThreshold = $wordThreshold; + + return $this; + } + + /** + * @return bool + */ + public function getArticleByLine() + { + return $this->articleByLine; + } + + /** + * @param bool $articleByLine + * + * @return $this + */ + public function setArticleByLine($articleByLine) + { + $this->articleByLine = $articleByLine; + + return $this; + } + + /** + * @return bool + */ + public function getStripUnlikelyCandidates() + { + return $this->stripUnlikelyCandidates; + } + + /** + * @param bool $stripUnlikelyCandidates + * + * @return $this + */ + public function setStripUnlikelyCandidates($stripUnlikelyCandidates) + { + $this->stripUnlikelyCandidates = $stripUnlikelyCandidates; + + return $this; + } + + /** + * @return bool + */ + public function getCleanConditionally() + { + return $this->cleanConditionally; + } + + /** + * @param bool $cleanConditionally + * + * @return $this + */ + public function setCleanConditionally($cleanConditionally) + { + $this->cleanConditionally = $cleanConditionally; + + return $this; + } + + /** + * @return bool + */ + public function getWeightClasses() + { + return $this->weightClasses; + } + + /** + * @param bool $weightClasses + * + * @return $this + */ + public function setWeightClasses($weightClasses) + { + $this->weightClasses = $weightClasses; + + return $this; + } + + /** + * @return bool + */ + public function getFixRelativeURLs() + { + return $this->fixRelativeURLs; + } + + /** + * @param bool $fixRelativeURLs + * + * @return $this + */ + public function setFixRelativeURLs($fixRelativeURLs) + { + $this->fixRelativeURLs = $fixRelativeURLs; + + return $this; + } + + /** + * @return bool + */ + public function getSubstituteEntities() + { + return $this->substituteEntities; + } + + /** + * @param bool $substituteEntities + * + * @return $this + */ + public function setSubstituteEntities($substituteEntities) + { + $this->substituteEntities = $substituteEntities; + + return $this; + } + + /** + * @return bool + */ + public function getNormalizeEntities() + { + return $this->normalizeEntities; + } + + /** + * @param bool $normalizeEntities + * + * @return $this + */ + public function setNormalizeEntities($normalizeEntities) + { + $this->normalizeEntities = $normalizeEntities; + + return $this; + } + + /** + * @return string + */ + public function getOriginalURL() + { + return $this->originalURL; + } + + /** + * @param string $originalURL + * + * @return $this + */ + public function setOriginalURL($originalURL) + { + $this->originalURL = $originalURL; + + return $this; + } + + /** + * @return bool + */ + public function getSummonCthulhu() + { + return $this->summonCthulhu; + } + + /** + * @param bool $summonCthulhu + * + * @return $this + */ + public function setSummonCthulhu($summonCthulhu) + { + $this->summonCthulhu = $summonCthulhu; + + return $this; + } +}