| 1 | <?php |
||
| 17 | class WP_Feed_Cache extends SimplePie_Cache { |
||
|
|
|||
| 18 | |||
| 19 | /** |
||
| 20 | * Creates a new SimplePie_Cache object. |
||
| 21 | * |
||
| 22 | * @since 2.8.0 |
||
| 23 | * @access public |
||
| 24 | * |
||
| 25 | * @param string $location URL location (scheme is used to determine handler). |
||
| 26 | * @param string $filename Unique identifier for cache object. |
||
| 27 | * @param string $extension 'spi' or 'spc'. |
||
| 28 | * @return WP_Feed_Cache_Transient Feed cache handler object that uses transients. |
||
| 29 | */ |
||
| 30 | public function create($location, $filename, $extension) { |
||
| 33 | } |
||
| 34 |