first commit

This commit is contained in:
CHIEFSOFT\ameye
2023-12-28 16:20:07 -05:00
commit b114fdf4fa
5377 changed files with 1850677 additions and 0 deletions
@@ -0,0 +1,21 @@
<?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 );
}