summaryrefslogtreecommitdiff
path: root/plugins/af_readability/vendor/andreskrey/Readability/Configuration.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2019-08-16 12:53:25 +0300
committerAndrew Dolgov <[email protected]>2019-08-16 12:53:25 +0300
commit24f55d5b919d4b39664b245e51c1d7b984a9966c (patch)
tree85805ec72804ef28b0f9a59f0973fc8b5d650362 /plugins/af_readability/vendor/andreskrey/Readability/Configuration.php
parent0e3b71c5351d46d7192dc6df015880059f34a839 (diff)
update readability library
Diffstat (limited to 'plugins/af_readability/vendor/andreskrey/Readability/Configuration.php')
-rw-r--r--plugins/af_readability/vendor/andreskrey/Readability/Configuration.php26
1 files changed, 0 insertions, 26 deletions
diff --git a/plugins/af_readability/vendor/andreskrey/Readability/Configuration.php b/plugins/af_readability/vendor/andreskrey/Readability/Configuration.php
index 6c17bc757..0632399c6 100644
--- a/plugins/af_readability/vendor/andreskrey/Readability/Configuration.php
+++ b/plugins/af_readability/vendor/andreskrey/Readability/Configuration.php
@@ -167,32 +167,6 @@ class Configuration
}
/**
- * @deprecated Use getCharThreshold. Will be removed in version 2.0
- *
- * @return int
- */
- public function getWordThreshold()
- {
- @trigger_error('getWordThreshold was replaced with getCharThreshold and will be removed in version 3.0', E_USER_DEPRECATED);
-
- return $this->charThreshold;
- }
-
- /**
- * @param int $charThreshold
- *
- * @return $this
- */
- public function setWordThreshold($charThreshold)
- {
- @trigger_error('setWordThreshold was replaced with setCharThreshold and will be removed in version 3.0', E_USER_DEPRECATED);
-
- $this->charThreshold = $charThreshold;
-
- return $this;
- }
-
- /**
* @return bool
*/
public function getArticleByLine()