# plugin-check/1.5.0/includes/Traits/Experimental_Check.php

Plugin Check (PCP), version 1.5.0. 27 lines.

- Page: https://pluginprobe.com/plugins/plugin-check/1.5.0/code/includes/Traits/Experimental_Check.php
- Raw: https://pluginprobe.com/plugins/plugin-check/1.5.0/raw/includes/Traits/Experimental_Check.php
- Modified: 2024-02-14T23:04:36+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/plugin-check/1.5.0/code/includes/Traits/Experimental_Check.php#L10-L20`.

```php
<?php
/**
 * Trait WordPress\Plugin_Check\Checker\Experimental_Check
 *
 * @package plugin-check
 */

namespace WordPress\Plugin_Check\Traits;

/**
 * Trait for experimental checks.
 *
 * @since 1.0.0
 */
trait Experimental_Check {
	/**
	 * Returns the checks stability.
	 *
	 * @since 1.0.0
	 *
	 * @return string One of the check stability constant values.
	 */
	public function get_stability() {
		return self::STABILITY_EXPERIMENTAL;
	}
}

```
