Changeset 55725
- Timestamp:
- 05/06/2023 11:38:17 AM (17 months ago)
- Location:
- trunk/src/wp-includes
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/class-wp-theme-json-schema.php
r54133 r55725 139 139 * @param array $settings Reference to the current settings array. 140 140 * @param array $path Path to the property to be removed. 141 *142 * @return void143 141 */ 144 142 private static function unset_setting_by_path( &$settings, $path ) { -
trunk/src/wp-includes/html-api/class-wp-html-tag-processor.php
r55724 r55725 1259 1259 * 1260 1260 * @since 6.2.0 1261 *1262 * @return void1263 1261 */ 1264 1262 private function skip_whitespace() { … … 1270 1268 * 1271 1269 * @since 6.2.0 1272 *1273 * @return void1274 1270 */ 1275 1271 private function after_tag() { … … 1290 1286 * @see WP_HTML_Tag_Processor::$lexical_updates 1291 1287 * @see WP_HTML_Tag_Processor::$classname_updates 1292 *1293 * @return void1294 1288 */ 1295 1289 private function class_name_updates_to_attributes_updates() { … … 2184 2178 * @type string $tag_closers "visit" or "skip": whether to stop on tag closers, e.g. </div>. 2185 2179 * } 2186 * @return void2187 2180 */ 2188 2181 private function parse_query( $query ) { -
trunk/src/wp-includes/rest-api/endpoints/class-wp-rest-global-styles-controller.php
r55606 r55725 35 35 * 36 36 * @since 5.9.0 37 *38 * @return void39 37 */ 40 38 public function register_routes() { -
trunk/src/wp-includes/script-loader.php
r55713 r55725 3022 3022 * @type bool $prettify Whether to add new lines and indents to output. Default is the test of whether the global constant `SCRIPT_DEBUG` is defined. 3023 3023 * } 3024 *3025 * @return void3026 3024 */ 3027 3025 function wp_enqueue_stored_styles( $options = array() ) { -
trunk/src/wp-includes/style-engine/class-wp-style-engine-css-rules-store.php
r55719 r55725 81 81 * 82 82 * @since 6.1.0 83 *84 * @return void85 83 */ 86 84 public static function remove_all_stores() { … … 94 92 * 95 93 * @param string $name The store name. 96 * @return void97 94 */ 98 95 public function set_name( $name ) { … … 153 150 * 154 151 * @param string $selector The CSS selector. 155 * @return void156 152 */ 157 153 public function remove_rule( $selector ) { -
trunk/src/wp-includes/style-engine/class-wp-style-engine-processor.php
r55719 r55725 127 127 * 128 128 * @since 6.1.0 129 *130 * @return void131 129 */ 132 130 private function combine_rules_selectors() { -
trunk/src/wp-includes/style-engine/class-wp-style-engine.php
r55719 r55725 289 289 * @param string $css_selector When a selector is passed, the function will return a full CSS rule `$selector { ...rules }`, otherwise a concatenated string of properties and values. 290 290 * @param string[] $css_declarations An associative array of CSS definitions, e.g., `array( "$property" => "$value", "$property" => "$value" )`. 291 * @return void292 291 */ 293 292 public static function store_css_rule( $store_name, $css_selector, $css_declarations ) {
Note: See TracChangeset
for help on using the changeset viewer.