interface-installable.php 254 B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * WPSEO plugin file.
  4. *
  5. * @package WPSEO\Admin
  6. */
  7. /**
  8. * Represents the interface for an installable object.
  9. */
  10. interface WPSEO_Installable {
  11. /**
  12. * Runs the installation routine.
  13. *
  14. * @return void
  15. */
  16. public function install();
  17. }