# wordpress-seo/18.8/src/services/health-check/runner-interface.php

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

- Page: https://pluginprobe.com/plugins/wordpress-seo/18.8/code/src/services/health-check/runner-interface.php
- Raw: https://pluginprobe.com/plugins/wordpress-seo/18.8/raw/src/services/health-check/runner-interface.php
- Modified: 2022-01-25T10:16:10+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.8/code/src/services/health-check/runner-interface.php#L10-L20`.

```php
<?php

namespace Yoast\WP\SEO\Services\Health_Check;

/**
 * Interface for the health check runner. The abstract Health_Check uses this to run a health check.
 */
interface Runner_Interface {

	/**
	 * Runs the health check.
	 *
	 * @return void
	 */
	public function run();
}

```
