Skip to content

Commit

Permalink
Update since annotations to 6.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sirreal committed Dec 9, 2024
1 parent 25dbb19 commit 70cf7f7
Show file tree
Hide file tree
Showing 14 changed files with 26 additions and 26 deletions.
4 changes: 2 additions & 2 deletions src/wp-includes/html-api/class-wp-css-attribute-selector.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@
*
* @package WordPress
* @subpackage HTML-API
* @since TBD
* @since 6.8.0
*/

/**
* CSS attribute selector.
*
* This class is used to test for matching HTML tags in a {@see WP_HTML_Tag_Processor}.
*
* @since TBD
* @since 6.8.0
*
* @access private
*/
Expand Down
4 changes: 2 additions & 2 deletions src/wp-includes/html-api/class-wp-css-class-selector.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@
*
* @package WordPress
* @subpackage HTML-API
* @since TBD
* @since 6.8.0
*/

/**
* CSS class selector.
*
* This class is used to test for matching HTML tags in a {@see WP_HTML_Tag_Processor}.
*
* @since TBD
* @since 6.8.0
*
* @access private
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*
* @package WordPress
* @subpackage HTML-API
* @since TBD
* @since 6.8.0
*/

/**
Expand All @@ -28,7 +28,7 @@
* - Next sibling (`el + el`)
* - Subsequent sibling (`el ~ el`)
*
* @since TBD
* @since 6.8.0
*
* @access private
*/
Expand All @@ -37,7 +37,7 @@ class WP_CSS_Complex_Selector_List extends WP_CSS_Compound_Selector_List impleme
* Takes a CSS selector string and returns an instance of itself or `null` if the selector
* string is invalid or unsupported.
*
* @since TBD
* @since 6.8.0
*
* @param string $input CSS selectors.
* @return static|null
Expand Down
4 changes: 2 additions & 2 deletions src/wp-includes/html-api/class-wp-css-complex-selector.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*
* @package WordPress
* @subpackage HTML-API
* @since TBD
* @since 6.8.0
*/

/**
Expand All @@ -15,7 +15,7 @@
* A compound selector is at least a single compound selector. There may be additional selectors
* with combinators.
*
* @since TBD
* @since 6.8.0
*
* @access private
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*
* @package WordPress
* @subpackage HTML-API
* @since TBD
* @since 6.8.0
*/

/**
Expand Down Expand Up @@ -67,7 +67,7 @@
* - `svg|*` to select all SVG elements
* - `html|title` to select only HTML TITLE elements.
*
* @since TBD
* @since 6.8.0
*
* @access private
*
Expand Down Expand Up @@ -116,7 +116,7 @@ protected function __construct( array $selectors ) {
* Takes a CSS selector string and returns an instance of itself or `null` if the selector
* string is invalid or unsupported.
*
* @since TBD
* @since 6.8.0
*
* @param string $input CSS selectors.
* @return static|null
Expand Down
4 changes: 2 additions & 2 deletions src/wp-includes/html-api/class-wp-css-compound-selector.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*
* @package WordPress
* @subpackage HTML-API
* @since TBD
* @since 6.8.0
*/

/**
Expand All @@ -17,7 +17,7 @@
* - Zero or more subclass selectors (ID, class, or attribute selectors).
* - At least one of the above.
*
* @since TBD
* @since 6.8.0
*
* @access private
*/
Expand Down
4 changes: 2 additions & 2 deletions src/wp-includes/html-api/class-wp-css-id-selector.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@
*
* @package WordPress
* @subpackage HTML-API
* @since TBD
* @since 6.8.0
*/

/**
* CSS ID selector.
*
* This class is used to test for matching HTML tags in a {@see WP_HTML_Tag_Processor}.
*
* @since TBD
* @since 6.8.0
*
* @access private
*/
Expand Down
4 changes: 2 additions & 2 deletions src/wp-includes/html-api/class-wp-css-type-selector.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@
*
* @package WordPress
* @subpackage HTML-API
* @since TBD
* @since 6.8.0
*/

/**
* CSS type selector.
*
* This class is used to test for matching HTML tags in a {@see WP_HTML_Tag_Processor}.
*
* @since TBD
* @since 6.8.0
*
* @access private
*/
Expand Down
4 changes: 2 additions & 2 deletions src/wp-includes/html-api/class-wp-html-processor.php
Original file line number Diff line number Diff line change
Expand Up @@ -652,7 +652,7 @@ public function get_unsupported_exception() {
* );
* }
*
* @since TBD
* @since 6.8.0
*
* @param string $selector_string Selector string.
* @return Generator<void> A generator pausing on each tag matching the selector.
Expand Down Expand Up @@ -692,7 +692,7 @@ public function select_all( $selector_string ): Generator {
* $processor->get_attribute( 'charset' ), // string(5) "utf-8"
* );
*
* @since TBD
* @since 6.8.0
*
* @param string $selector_string
* @return bool True if a matching tag was found, otherwise false.
Expand Down
4 changes: 2 additions & 2 deletions src/wp-includes/html-api/class-wp-html-tag-processor.php
Original file line number Diff line number Diff line change
Expand Up @@ -877,7 +877,7 @@ public function change_parsing_namespace( string $new_namespace ): bool {
* );
* }
*
* @since TBD
* @since 6.8.0
*
* @param string $selector_string Selector string.
* @return Generator<void> A generator pausing on each tag matching the selector.
Expand Down Expand Up @@ -917,7 +917,7 @@ public function select_all( $selector_string ): Generator {
* $processor->get_attribute( 'charset' ), // string(5) "utf-8"
* );
*
* @since TBD
* @since 6.8.0
*
* @param string $selector_string
* @return bool True if a matching tag was found, otherwise false.
Expand Down
2 changes: 1 addition & 1 deletion tests/phpunit/tests/html-api/wpCssComplexSelectorList.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
*
* @subpackage HTML-API
*
* @since TBD
* @since 6.8.0
*
* @group html-api
*/
Expand Down
2 changes: 1 addition & 1 deletion tests/phpunit/tests/html-api/wpCssCompoundSelectorList.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
*
* @subpackage HTML-API
*
* @since TBD
* @since 6.8.0
*
* @group html-api
*/
Expand Down
2 changes: 1 addition & 1 deletion tests/phpunit/tests/html-api/wpHtmlProcessor-select.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* @package WordPress
* @subpackage HTML-API
*
* @since TBD
* @since 6.8.0
*
* @group html-api
*/
Expand Down
2 changes: 1 addition & 1 deletion tests/phpunit/tests/html-api/wpHtmlTagProcessor-select.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* @package WordPress
* @subpackage HTML-API
*
* @since TBD
* @since 6.8.0
*
* @group html-api
*/
Expand Down

0 comments on commit 70cf7f7

Please sign in to comment.