# wordpress-seo/28.3/src/commands/command-interface.php

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

- Page: https://pluginprobe.com/plugins/wordpress-seo/28.3/code/src/commands/command-interface.php
- Raw: https://pluginprobe.com/plugins/wordpress-seo/28.3/raw/src/commands/command-interface.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/28.3/code/src/commands/command-interface.php#L10-L20`.

```php
<?php

namespace Yoast\WP\SEO\Commands;

/**
 * Interface definition for WP CLI commands.
 *
 * An interface for registering integrations with WordPress.
 */
interface Command_Interface {

	/**
	 * Returns the namespace of this command.
	 *
	 * @return string
	 */
	public static function get_namespace();
}

```
