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

https://bitbucket.org/carloskikea/helpet · PHP · 19 lines · 4 code · 2 blank · 13 comment · 0 complexity · 9de4ebd042a2071bb50a51491ba7d43c MD5 · raw file

  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. }