Skip to content

Commit

Permalink
Tag processor: update @SInCE version tags to 6.2.0 (#44432)
Browse files Browse the repository at this point in the history
Previously we were expecting this to land in 6.1.0 but it was delayed so
this patch updates the date of inclusion to match the new release date.
  • Loading branch information
dmsnell committed Sep 26, 2022
1 parent df7cdc9 commit 232b9ab
Show file tree
Hide file tree
Showing 3 changed files with 52 additions and 52 deletions.
18 changes: 9 additions & 9 deletions lib/experimental/html/class-wp-html-attribute-token.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*
* @package WordPress
* @subpackage HTML
* @since 6.1.0
* @since 6.2.0
*/

/**
Expand All @@ -13,63 +13,63 @@
* This class is for internal usage of the WP_HTML_Tag_Processor class.
*
* @access private
* @since 6.1.0
* @since 6.2.0
*
* @see WP_HTML_Tag_Processor
*/
class WP_HTML_Attribute_Token {
/**
* Attribute name.
*
* @since 6.1.0
* @since 6.2.0
* @var string
*/
public $name;

/**
* Attribute value.
*
* @since 6.1.0
* @since 6.2.0
* @var int
*/
public $value_starts_at;

/**
* How many bytes the value occupies in the input HTML.
*
* @since 6.1.0
* @since 6.2.0
* @var int
*/
public $value_length;

/**
* The string offset where the attribute name starts.
*
* @since 6.1.0
* @since 6.2.0
* @var int
*/
public $start;

/**
* The string offset after the attribute value or its name.
*
* @since 6.1.0
* @since 6.2.0
* @var int
*/
public $end;

/**
* Whether the attribute is a boolean attribute with value `true`.
*
* @since 6.1.0
* @since 6.2.0
* @var bool
*/
public $is_true;

/**
* Constructor.
*
* @since 6.1.0
* @since 6.2.0
*
* @param string $name Attribute name.
* @param int $value_start Attribute value.
Expand Down
Loading

0 comments on commit 232b9ab

Please sign in to comment.