File "class-listener.php"
Full Path: /home/timepamn/dailynetworth.org/wp-content/plugins/wordpress-seo/admin/listeners/class-listener.php
File size: 304 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
/**
* WPSEO plugin file.
*
* @package WPSEO\Admin\Listeners
*/
/**
* Dictates the required methods for a Listener implementation.
*/
interface WPSEO_Listener {
/**
* Listens to an argument in the request URL and triggers an action.
*
* @return void
*/
public function listen();
}