Make WordPress Core


Ignore:
Timestamp:
05/29/2015 09:36:38 PM (10 years ago)
Author:
wonderboymusic
Message:

After [32656], add @access annotations to methods that have no doc block in wp-includes/*.
Makes it easier to search for no doc blocks via }[\n\t\r ]+(protected|private|public).

See #32444.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/default-widgets.php

    r32650 r32657  
    889889    }
    890890
     891    /**
     892     * @access public
     893     */
    891894    public function flush_widget_cache() {
    892895        wp_cache_delete('widget_recent_posts', 'widget');
     
    933936    }
    934937
     938    /**
     939     * @access public
     940     */
    935941    public function recent_comments_style() {
    936942        /**
     
    950956    }
    951957
     958    /**
     959     * @access public
     960     */
    952961    public function flush_widget_cache() {
    953962        wp_cache_delete('widget_recent_comments', 'widget');
     
    14671476    }
    14681477
     1478    /**
     1479     * @param array $instance
     1480     * @return string
     1481     */
    14691482    public function _get_current_taxonomy($instance) {
    14701483        if ( !empty($instance['taxonomy']) && taxonomy_exists($instance['taxonomy']) )
Note: See TracChangeset for help on using the changeset viewer.