interface-notification-handler.php
22 lines
| 1 | <?php |
| 2 | /** |
| 3 | * WPSEO plugin file. |
| 4 | * |
| 5 | * @package WPSEO\Admin\Notifiers |
| 6 | */ |
| 7 | |
| 8 | /** |
| 9 | * Dictates the required methods for a Notification Handler implementation. |
| 10 | */ |
| 11 | interface WPSEO_Notification_Handler { |
| 12 | |
| 13 | /** |
| 14 | * Handles the notification object. |
| 15 | * |
| 16 | * @param Yoast_Notification_Center $notification_center The notification center object. |
| 17 | * |
| 18 | * @return void |
| 19 | */ |
| 20 | public function handle( Yoast_Notification_Center $notification_center ); |
| 21 | } |
| 22 |