Make WordPress Core


Ignore:
Timestamp:
01/10/2016 01:25:44 AM (9 years ago)
Author:
johnbillion
Message:

Docs: Various docblock corrections.

See #32246

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/class-feed.php

    r34348 r36250  
    1010     * @static
    1111     * @access public
     12     *
     13     * @param string $location  URL location (scheme is used to determine handler).
     14     * @param string $filename  Unique identifier for cache object.
     15     * @param string $extension 'spi' or 'spc'.
     16     * @return WP_Feed_Cache_Transient Feed cache handler object that uses transients.
    1217     */
    1318    public function create($location, $filename, $extension) {
     
    2126    public $lifetime = 43200; //Default lifetime in cache of 12 hours
    2227
     28    /**
     29     * Class instantiator.
     30     *
     31     * @param string $location  URL location (scheme is used to determine handler).
     32     * @param string $filename  Unique identifier for cache object.
     33     * @param string $extension 'spi' or 'spc'.
     34     */
    2335    public function __construct($location, $filename, $extension) {
    2436        $this->name = 'feed_' . $filename;
Note: See TracChangeset for help on using the changeset viewer.