Edit File by line
/home/zeestwma/richards.../wp-conte.../plugins/woocomme.../src/Internal
File: RegisterHooksInterface.php
<?php
[0] Fix | Delete
declare( strict_types=1 );
[1] Fix | Delete
[2] Fix | Delete
namespace Automattic\WooCommerce\Internal;
[3] Fix | Delete
[4] Fix | Delete
/**
[5] Fix | Delete
* Interface RegisterHooksInterface
[6] Fix | Delete
*
[7] Fix | Delete
* The following must be added at the end of the 'init_hooks' method in the 'WooCommerce' class
[8] Fix | Delete
* for each class implementing this interface:
[9] Fix | Delete
* $container->get( <full class name>::class )->register();
[10] Fix | Delete
*
[11] Fix | Delete
* @since 8.5.0
[12] Fix | Delete
*/
[13] Fix | Delete
interface RegisterHooksInterface {
[14] Fix | Delete
[15] Fix | Delete
/**
[16] Fix | Delete
* Register this class instance to the appropriate hooks.
[17] Fix | Delete
*
[18] Fix | Delete
* @return void
[19] Fix | Delete
*/
[20] Fix | Delete
public function register();
[21] Fix | Delete
}
[22] Fix | Delete
[23] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function