| 1 |
<?php |
| 2 |
/** |
| 3 |
* WPSEO plugin file. |
| 4 |
* |
| 5 |
* @package WPSEO\Admin |
| 6 |
*/ |
| 7 |
|
| 8 |
// Mark this file as deprecated. |
| 9 |
_deprecated_file( __FILE__, 'WPSEO 13.2' ); |
| 10 |
|
| 11 |
/** |
| 12 |
* This class will fetch a new status from Ryte and if it's necessary it will |
| 13 |
* notify the site admin by email and remove the current meta value to hide the |
| 14 |
* notice for all admin users. |
| 15 |
* |
| 16 |
* @deprecated 13.2 |
| 17 |
* @codeCoverageIgnore |
| 18 |
*/ |
| 19 |
class WPSEO_OnPage_Request extends WPSEO_Ryte_Request { |
| 20 |
|
| 21 |
/** |
| 22 |
* Setting the request object. |
| 23 |
* |
| 24 |
* @deprecated 13.2 |
| 25 |
* @codeCoverageIgnore |
| 26 |
*/ |
| 27 |
public function __construct() { |
| 28 |
_deprecated_function( __METHOD__, 'WPSEO 13.2', WPSEO_Ryte_Option::class ); |
| 29 |
} |
| 30 |
} |
| 31 |
|