interface-metabox-formatter.php 258 B

12345678910111213141516171819
  1. <?php
  2. /**
  3. * WPSEO plugin file.
  4. *
  5. * @package WPSEO\Admin\Formatter
  6. */
  7. /**
  8. * Interface to force get_values.
  9. */
  10. interface WPSEO_Metabox_Formatter_Interface {
  11. /**
  12. * Returns formatter values.
  13. *
  14. * @return array
  15. */
  16. public function get_values();
  17. }