| Current Path : /home/x/b/o/xbodynamge/namtation/wp-content/ |
| Current File : /home/x/b/o/xbodynamge/namtation/wp-content/class-link-compatibility-notifier.php.tar |
wp-content/plugins/wordpress-seo/src/deprecated/admin/links/class-link-compatibility-notifier.php 0000644 00000001603 15114662604 0035373 0 ustar 00 home/xbodynamge/crosstraining <?php
/**
* WPSEO plugin file.
*
* @package WPSEO\Admin\Links
*/
/**
* Represents compatibility with php version 5.3.
*/
class WPSEO_Link_Compatibility_Notifier {
/**
* Adds the notification to the notification center.
*
* @deprecated 13.1
*
* @codeCoverageIgnore
*/
public function add_notification() {
_deprecated_function( __METHOD__, 'WPSEO 13.1' );
}
/**
* Removes the notification from the notification center.
*
* @deprecated 13.1
*
* @codeCoverageIgnore
*/
public function remove_notification() {
_deprecated_function( __METHOD__, 'WPSEO 13.1' );
}
/**
* Returns the notification when the version is incompatible.
*
* @deprecated 13.1
*
* @codeCoverageIgnore
*
* @return Yoast_Notification|null The notification.
*/
protected function get_notification() {
_deprecated_function( __METHOD__, 'WPSEO 13.1' );
return null;
}
}