interface-metabox-formatter.php 233 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 <?php /** * @package WPSEO\Admin|Formatter */ /** * Interface to force get_values */ interface WPSEO_Metabox_Formatter_Interface { /** * Returns formatter values. * * @return array */ public function get_values(); }