Correct return type of add_group()

This commit is contained in:
Matt Sherman 2023-11-20 18:55:35 -05:00
parent 2d44b1f94b
commit 86e8036241
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ interface ProductFormTemplateInterface extends BlockTemplateInterface {
* Adds a new group block.
*
* @param array $block_config block config.
* @return BlockInterface new block section.
* @return GroupInterface new group block.
*/
public function add_group( array $block_config ): GroupInterface;