# wordpress-seo/28.3/admin/interface-installable.php

Yoast SEO – Advanced SEO with real-time guidance and built-in AI, version 28.3. 20 lines.

- Page: https://pluginprobe.com/plugins/wordpress-seo/28.3/code/admin/interface-installable.php
- Raw: https://pluginprobe.com/plugins/wordpress-seo/28.3/raw/admin/interface-installable.php
- Modified: 2018-03-20T16:19:04+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/wordpress-seo/28.3/code/admin/interface-installable.php#L10-L20`.

```php
<?php
/**
 * WPSEO plugin file.
 *
 * @package WPSEO\Admin
 */

/**
 * Represents the interface for an installable object.
 */
interface WPSEO_Installable {

	/**
	 * Runs the installation routine.
	 *
	 * @return void
	 */
	public function install();
}

```
