equal
deleted
inserted
replaced
24 * @param string $location URL location (scheme is used to determine handler). |
24 * @param string $location URL location (scheme is used to determine handler). |
25 * @param string $filename Unique identifier for cache object. |
25 * @param string $filename Unique identifier for cache object. |
26 * @param string $extension 'spi' or 'spc'. |
26 * @param string $extension 'spi' or 'spc'. |
27 * @return WP_Feed_Cache_Transient Feed cache handler object that uses transients. |
27 * @return WP_Feed_Cache_Transient Feed cache handler object that uses transients. |
28 */ |
28 */ |
29 public function create($location, $filename, $extension) { |
29 public function create( $location, $filename, $extension ) { |
30 return new WP_Feed_Cache_Transient($location, $filename, $extension); |
30 return new WP_Feed_Cache_Transient( $location, $filename, $extension ); |
31 } |
31 } |
32 } |
32 } |