| 1 |
<?php |
| 2 |
|
| 3 |
namespace Yoast\WP\SEO\User_Meta\Domain; |
| 4 |
|
| 5 |
/** |
| 6 |
* This interface describes an additional contactmethod. |
| 7 |
*/ |
| 8 |
interface Additional_Contactmethod_Interface { |
| 9 |
|
| 10 |
/** |
| 11 |
* Returns the key of the contactmethod. |
| 12 |
* |
| 13 |
* @return string |
| 14 |
*/ |
| 15 |
public function get_key(): string; |
| 16 |
|
| 17 |
/** |
| 18 |
* Returns the label of the contactmethod field. |
| 19 |
* |
| 20 |
* @return string |
| 21 |
*/ |
| 22 |
public function get_label(): string; |
| 23 |
} |
| 24 |
|