interface-notification-handler.php 437 B

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