1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<?php
namespace Yoast\WP\SEO\Initializers;
use Yoast\WP\SEO\Loadable_Interface;
/** * Integration interface definition. * * An interface for registering integrations with WordPress. */ interface Initializer_Interface extends Loadable_Interface {
/** * Runs this initializer. * * @return void */ public function initialize(); }
|