wp_back/wp-content/plugins/wordpress-seo/admin/interface-installable.php

20 lines
254 B
PHP
Raw Normal View History

2024-05-20 15:37:46 +03:00
<?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();
}