Skip to content

Commit

Permalink
DROPME: ignore code coverage HTML API
Browse files Browse the repository at this point in the history
  • Loading branch information
sirreal committed Dec 4, 2024
1 parent f7909e9 commit 10a3198
Show file tree
Hide file tree
Showing 14 changed files with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@
* @since 6.4.0
*
* @access private
* @codeCoverageIgnore
*
* @see https://html.spec.whatwg.org/#list-of-active-formatting-elements
* @see WP_HTML_Processor
Expand Down
1 change: 1 addition & 0 deletions src/wp-includes/html-api/class-wp-html-attribute-token.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
* @access private
* @since 6.2.0
* @since 6.5.0 Replaced `end` with `length` to more closely match `substr()`.
* @codeCoverageIgnore
*
* @see WP_HTML_Tag_Processor
*/
Expand Down
1 change: 1 addition & 0 deletions src/wp-includes/html-api/class-wp-html-decoder.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
* @package WordPress
* @subpackage HTML-API
* @since 6.6.0
* @codeCoverageIgnore
*/
class WP_HTML_Decoder {
/**
Expand Down
1 change: 1 addition & 0 deletions src/wp-includes/html-api/class-wp-html-doctype-info.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@
* @see https://www.iso.org/standard/16387.html
*
* @since 6.7.0
* @codeCoverageIgnore
*
* @see WP_HTML_Processor
*/
Expand Down
1 change: 1 addition & 0 deletions src/wp-includes/html-api/class-wp-html-open-elements.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
* > for misnested tags).
*
* @since 6.4.0
* @codeCoverageIgnore
*
* @access private
*
Expand Down
1 change: 1 addition & 0 deletions src/wp-includes/html-api/class-wp-html-processor-state.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
* @since 6.4.0
*
* @access private
* @codeCoverageIgnore
*
* @see WP_HTML_Processor
*/
Expand Down
1 change: 1 addition & 0 deletions src/wp-includes/html-api/class-wp-html-processor.php
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,7 @@
* these situations and will bail.
*
* @since 6.4.0
* @codeCoverageIgnore
*
* @see WP_HTML_Tag_Processor
* @see https://html.spec.whatwg.org/
Expand Down
2 changes: 2 additions & 0 deletions src/wp-includes/html-api/class-wp-html-span.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@
* @since 6.2.0
* @since 6.5.0 Replaced `end` with `length` to more closely align with `substr()`.
*
* @codeCoverageIgnore
*
* @see WP_HTML_Tag_Processor
*/
class WP_HTML_Span {
Expand Down
1 change: 1 addition & 0 deletions src/wp-includes/html-api/class-wp-html-stack-event.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
*
* @access private
* @since 6.6.0
* @codeCoverageIgnore
*
* @see WP_HTML_Processor
*/
Expand Down
1 change: 1 addition & 0 deletions src/wp-includes/html-api/class-wp-html-tag-processor.php
Original file line number Diff line number Diff line change
Expand Up @@ -407,6 +407,7 @@
* @since 6.5.0 Pauses processor when input ends in an incomplete syntax token.
* Introduces "special" elements which act like void elements, e.g. TITLE, STYLE.
* Allows scanning through all tokens and processing modifiable text, where applicable.
* @codeCoverageIgnore
*/
class WP_HTML_Tag_Processor {
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
* @since 6.5.0 Replace `end` with `length` to more closely match `substr()`.
*
* @see WP_HTML_Tag_Processor
* @codeCoverageIgnore
*/
class WP_HTML_Text_Replacement {
/**
Expand Down
2 changes: 2 additions & 0 deletions src/wp-includes/html-api/class-wp-html-token.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@
*
* @access private
*
* @codeCoverageIgnore
*
* @see WP_HTML_Processor
*/
class WP_HTML_Token {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
*
* @access private
*
* @codeCoverageIgnore
* @see WP_HTML_Processor
*/
class WP_HTML_Unsupported_Exception extends Exception {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@
*
* @package WordPress
* @since 6.6.0
* @codeCoverageIgnore
*/

// phpcs:disable
Expand Down

0 comments on commit 10a3198

Please sign in to comment.