- Timestamp:
- 05/03/2023 11:55:50 PM (23 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/style-engine/class-wp-style-engine-css-rule.php
r54481 r55719 44 44 * 45 45 * @param string $selector The CSS selector. 46 * @param string[]|WP_Style_Engine_CSS_Declarations $declarations An associative array of CSS definitions, e.g., array( "$property" => "$value", "$property" => "$value" ),46 * @param string[]|WP_Style_Engine_CSS_Declarations $declarations An associative array of CSS definitions, e.g., `array( "$property" => "$value", "$property" => "$value" )`, 47 47 * or a WP_Style_Engine_CSS_Declarations object. 48 48 */ … … 58 58 * 59 59 * @param string $selector The CSS selector. 60 *61 60 * @return WP_Style_Engine_CSS_Rule Returns the object to allow chaining of methods. 62 61 */ … … 73 72 * @param array|WP_Style_Engine_CSS_Declarations $declarations An array of declarations (property => value pairs), 74 73 * or a WP_Style_Engine_CSS_Declarations object. 75 *76 74 * @return WP_Style_Engine_CSS_Rule Returns the object to allow chaining of methods. 77 75 */ … … 119 117 * @since 6.1.0 120 118 * 121 * @param bool $should_prettify Whether to add spacing, new lines and indents. 122 * @param number $indent_count The number of tab indents to apply to the rule. Applies if `prettify` is `true`. 123 * 119 * @param bool $should_prettify Whether to add spacing, new lines and indents. 120 * @param int $indent_count The number of tab indents to apply to the rule. Applies if `prettify` is `true`. 124 121 * @return string 125 122 */
Note: See TracChangeset
for help on using the changeset viewer.