aboutsummaryrefslogtreecommitdiff
path: root/lib/SimplePie
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2021-04-08 23:34:21 +0200
committerGravatar GitHub <noreply@github.com> 2021-04-08 23:34:21 +0200
commita57fa9975a5c7276ca61b501502c0789af4983f5 (patch)
treee56273dc7dfc0ab44783bd896d336cbf1da162cd /lib/SimplePie
parentf39cbe236da32042e3dcd705d9a6de2dcb51653d (diff)
Fix wrong SimplePie type hint (#3578)
`SimplePie_Cache` also exists but is something else.
Diffstat (limited to 'lib/SimplePie')
-rw-r--r--lib/SimplePie/SimplePie.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/SimplePie/SimplePie.php b/lib/SimplePie/SimplePie.php
index 66171dea3..0acad05d8 100644
--- a/lib/SimplePie/SimplePie.php
+++ b/lib/SimplePie/SimplePie.php
@@ -1622,7 +1622,7 @@ class SimplePie
* Fetch the data via SimplePie_File
*
* If the data is already cached, attempt to fetch it from there instead
- * @param SimplePie_Cache|false $cache Cache handler, or false to not load from the cache
+ * @param SimplePie_Cache_Base|false $cache Cache handler, or false to not load from the cache
* @return array|true Returns true if the data was loaded from the cache, or an array of HTTP headers and sniffed type
*/
protected function fetch_data(&$cache)