From 740e8ec08c4b7b639d9754faa219b846d4d60140 Mon Sep 17 00:00:00 2001 From: dilipbheda Date: Sun, 16 Jun 2024 11:05:48 +0530 Subject: [PATCH] Add optional descriptions prefix --- .../class-wp-block-parser-frame.php | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/packages/block-serialization-default-parser/class-wp-block-parser-frame.php b/packages/block-serialization-default-parser/class-wp-block-parser-frame.php index 393a2a315cdfef..6ab5dd3087dfb6 100644 --- a/packages/block-serialization-default-parser/class-wp-block-parser-frame.php +++ b/packages/block-serialization-default-parser/class-wp-block-parser-frame.php @@ -65,8 +65,9 @@ class WP_Block_Parser_Frame { * @param WP_Block_Parser_Block $block Full or partial block. * @param int $token_start Byte offset into document for start of parse token. * @param int $token_length Byte length of entire parse token string. - * @param int|null $prev_offset Byte offset into document for after parse token ends. Default null. - * @param int|null $leading_html_start Byte offset into document where leading HTML before token starts. Default null. + * @param int|null $prev_offset Optional. Byte offset into document for after parse token ends. Default null. + * @param int|null $leading_html_start Optional. Byte offset into document where leading HTML before token starts. + * Default null. */ public function __construct( $block, $token_start, $token_length, $prev_offset = null, $leading_html_start = null ) { $this->block = $block;