# wordpress-seo/18.7/src/deprecated/admin/onpage/class-onpage-request.php

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

- Page: https://pluginprobe.com/plugins/wordpress-seo/18.7/code/src/deprecated/admin/onpage/class-onpage-request.php
- Raw: https://pluginprobe.com/plugins/wordpress-seo/18.7/raw/src/deprecated/admin/onpage/class-onpage-request.php
- Modified: 2020-09-01T12:27:02+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/18.7/code/src/deprecated/admin/onpage/class-onpage-request.php#L10-L20`.

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

// Mark this file as deprecated.
_deprecated_file( __FILE__, 'WPSEO 13.2' );

/**
 * This class will fetch a new status from Ryte and if it's necessary it will
 * notify the site admin by email and remove the current meta value to hide the
 * notice for all admin users.
 *
 * @deprecated 13.2
 * @codeCoverageIgnore
 */
class WPSEO_OnPage_Request extends WPSEO_Ryte_Request {

	/**
	 * Setting the request object.
	 *
	 * @deprecated 13.2
	 * @codeCoverageIgnore
	 */
	public function __construct() {
		_deprecated_function( __METHOD__, 'WPSEO 13.2', WPSEO_Ryte_Option::class );
	}
}

```
