| 1 |
<?php |
| 2 |
|
| 3 |
namespace Yoast\WP\SEO\Integrations; |
| 4 |
|
| 5 |
use Yoast\WP\SEO\Loadable_Interface; |
| 6 |
|
| 7 |
/** |
| 8 |
* An interface for registering integrations with WordPress. |
| 9 |
* |
| 10 |
* @codeCoverageIgnore It represents an interface. |
| 11 |
*/ |
| 12 |
interface Integration_Interface extends Loadable_Interface { |
| 13 |
|
| 14 |
/** |
| 15 |
* Initializes the integration. |
| 16 |
* |
| 17 |
* This is the place to register hooks and filters. |
| 18 |
* |
| 19 |
* @return void |
| 20 |
*/ |
| 21 |
public function register_hooks(); |
| 22 |
} |
| 23 |
|