Admin
2 years ago
BatchProcessing
2 years ago
DataStores
2 years ago
DependencyManagement
2 years ago
Features
2 years ago
Integrations
2 years ago
Orders
2 years ago
ProductAttributesLookup
2 years ago
ProductDownloads
4 years ago
ProductImage
2 years ago
Settings
3 years ago
Traits
2 years ago
TransientFiles
2 years ago
Utilities
2 years ago
WCCom
2 years ago
AssignDefaultCategory.php
5 years ago
DownloadPermissionsAdjuster.php
3 years ago
RegisterHooksInterface.php
2 years ago
RestApiUtil.php
4 years ago
RestockRefundedItemsAdjuster.php
4 years ago
RegisterHooksInterface.php
20 lines
| 1 | <?php |
| 2 | declare( strict_types=1 ); |
| 3 | |
| 4 | namespace Automattic\WooCommerce\Internal; |
| 5 | |
| 6 | /** |
| 7 | * Interface RegisterHooksInterface |
| 8 | * |
| 9 | * @since 8.5.0 |
| 10 | */ |
| 11 | interface RegisterHooksInterface { |
| 12 | |
| 13 | /** |
| 14 | * Register this class instance to the appropriate hooks. |
| 15 | * |
| 16 | * @return void |
| 17 | */ |
| 18 | public function register(); |
| 19 | } |
| 20 |