12345678910111213141516171819 |
- <?php
- /**
- * WPSEO plugin file.
- *
- * @package WPSEO\Admin\Formatter
- */
- /**
- * Interface to force get_values.
- */
- interface WPSEO_Metabox_Formatter_Interface {
- /**
- * Returns formatter values.
- *
- * @return array
- */
- public function get_values();
- }
|