wp/wp-includes/class-wp-feed-cache.php
changeset 9 177826044cd9
parent 7 cf61fcea0001
child 18 be944660c56a
equal deleted inserted replaced
8:c7c34916027a 9:177826044cd9
    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 }