BlockContainerInterface.php
5 days ago
BlockInterface.php
5 days ago
BlockTemplateInterface.php
5 days ago
ContainerInterface.php
5 days ago
BlockContainerInterface.php
14 lines
| 1 | <?php |
| 2 | /** |
| 3 | * WooCommerce Block Templates block container interface compatibility shim. |
| 4 | */ |
| 5 | |
| 6 | namespace Automattic\WooCommerce\Admin\BlockTemplates; |
| 7 | |
| 8 | /** |
| 9 | * Removed block templates block container interface. |
| 10 | * |
| 11 | * @deprecated 10.9.0 Block template extension APIs were deprecated. The block templates API was removed in 11.0.0 with no replacement. |
| 12 | */ |
| 13 | interface BlockContainerInterface extends BlockInterface, ContainerInterface {} |
| 14 |