mirror of
https://gh.wpcy.net/https://github.com/pawankhated/one-click-wordpress-installer.git
synced 2026-04-22 00:39:17 +08:00
19 lines
254 B
PHP
19 lines
254 B
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();
|
|
}
|