Make WordPress Core

Ticket #38765: 38765.3.diff

File 38765.3.diff, 1.7 KB (added by Toro_Unit, 8 years ago)

fix param comments

  • src/wp-includes/class-wp-taxonomy.php

     
    196196        public $_builtin;
    197197
    198198        /**
     199         * $args
     200         * @since 4.7.0
     201         * @access public
     202         * @var array
     203         */
     204        public $props;
     205
     206        /**
    199207         * Constructor.
    200208         *
    201209         * @since 4.7.0
     
    214222                $this->set_props( $object_type, $args );
    215223        }
    216224
     225        public function get_props( $type = 'array' ) {
     226
     227                return $this->props;
     228        }
     229
    217230        /**
    218231         * Sets taxonomy properties.
    219232         *
     
    333346                        }
    334347                }
    335348
     349                $this->props = $args;
     350
    336351                foreach ( $args as $property_name => $property_value ) {
    337352                        $this->$property_name = $property_value;
    338353                }
  • src/wp-includes/taxonomy.php

     
    388388         * Fires after a taxonomy is registered.
    389389         *
    390390         * @since 3.3.0
     391         * @since 4.7.0 Converted the `$taxonomy_object` parameter to accept a WP_Taxonomy object.
    391392         *
    392          * @param string       $taxonomy    Taxonomy slug.
    393          * @param array|string $object_type Object type or array of object types.
    394          * @param array        $args        Array of taxonomy registration arguments.
     393         * @param string       $taxonomy        Taxonomy slug.
     394         * @param array|string $object_type     Object type or array of object types.
     395         * @param WP_Taxonomy  $taxonomy_object Taxonomy Object.
    395396         */
    396         do_action( 'registered_taxonomy', $taxonomy, $object_type, $args );
     397        do_action( 'registered_taxonomy', $taxonomy, $object_type, $taxonomy_object );
    397398}
    398399
    399400/**