# wordpress-seo/19.0/admin/notifiers/interface-notification-handler.php

Yoast SEO – Advanced SEO with real-time guidance and built-in AI, version 19.0. 22 lines.

- Page: https://pluginprobe.com/plugins/wordpress-seo/19.0/code/admin/notifiers/interface-notification-handler.php
- Raw: https://pluginprobe.com/plugins/wordpress-seo/19.0/raw/admin/notifiers/interface-notification-handler.php
- Modified: 2018-07-24T09:10:00+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/wordpress-seo/19.0/code/admin/notifiers/interface-notification-handler.php#L10-L20`.

```php
<?php
/**
 * WPSEO plugin file.
 *
 * @package WPSEO\Admin\Notifiers
 */

/**
 * Dictates the required methods for a Notification Handler implementation.
 */
interface WPSEO_Notification_Handler {

	/**
	 * Handles the notification object.
	 *
	 * @param Yoast_Notification_Center $notification_center The notification center object.
	 *
	 * @return void
	 */
	public function handle( Yoast_Notification_Center $notification_center );
}

```
