Skip to content

Commit 232b9ab

Browse files
authored
Tag processor: update @SInCE version tags to 6.2.0 (#44432)
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.
1 parent df7cdc9 commit 232b9ab

File tree

3 files changed

+52
-52
lines changed

3 files changed

+52
-52
lines changed

lib/experimental/html/class-wp-html-attribute-token.php

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* @package WordPress
66
* @subpackage HTML
7-
* @since 6.1.0
7+
* @since 6.2.0
88
*/
99

1010
/**
@@ -13,63 +13,63 @@
1313
* This class is for internal usage of the WP_HTML_Tag_Processor class.
1414
*
1515
* @access private
16-
* @since 6.1.0
16+
* @since 6.2.0
1717
*
1818
* @see WP_HTML_Tag_Processor
1919
*/
2020
class WP_HTML_Attribute_Token {
2121
/**
2222
* Attribute name.
2323
*
24-
* @since 6.1.0
24+
* @since 6.2.0
2525
* @var string
2626
*/
2727
public $name;
2828

2929
/**
3030
* Attribute value.
3131
*
32-
* @since 6.1.0
32+
* @since 6.2.0
3333
* @var int
3434
*/
3535
public $value_starts_at;
3636

3737
/**
3838
* How many bytes the value occupies in the input HTML.
3939
*
40-
* @since 6.1.0
40+
* @since 6.2.0
4141
* @var int
4242
*/
4343
public $value_length;
4444

4545
/**
4646
* The string offset where the attribute name starts.
4747
*
48-
* @since 6.1.0
48+
* @since 6.2.0
4949
* @var int
5050
*/
5151
public $start;
5252

5353
/**
5454
* The string offset after the attribute value or its name.
5555
*
56-
* @since 6.1.0
56+
* @since 6.2.0
5757
* @var int
5858
*/
5959
public $end;
6060

6161
/**
6262
* Whether the attribute is a boolean attribute with value `true`.
6363
*
64-
* @since 6.1.0
64+
* @since 6.2.0
6565
* @var bool
6666
*/
6767
public $is_true;
6868

6969
/**
7070
* Constructor.
7171
*
72-
* @since 6.1.0
72+
* @since 6.2.0
7373
*
7474
* @param string $name Attribute name.
7575
* @param int $value_start Attribute value.

0 commit comments

Comments
 (0)