Skip to content

Commit

Permalink
Add optional descriptions prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
dilipbheda committed Jun 17, 2024
1 parent 83f3fdd commit 740e8ec
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 740e8ec

Please sign in to comment.