Experimental_Check.php in Plugin Check (PCP) trunk, at includes/Traits/Experimental_Check.php
| 1 | <?php |
| 2 | /** |
| 3 | * Trait WordPress\Plugin_Check\Checker\Experimental_Check |
| 4 | * |
| 5 | * @package plugin-check |
| 6 | */ |
| 7 | |
| 8 | namespace WordPress\Plugin_Check\Traits; |
| 9 | |
| 10 | /** |
| 11 | * Trait for experimental checks. |
| 12 | * |
| 13 | * @since 1.0.0 |
| 14 | */ |
| 15 | trait Experimental_Check { |
| 16 | /** |
| 17 | * Returns the checks stability. |
| 18 | * |
| 19 | * @since 1.0.0 |
| 20 | * |
| 21 | * @return string One of the check stability constant values. |
| 22 | */ |
| 23 | public function get_stability() { |
| 24 | return self::STABILITY_EXPERIMENTAL; |
| 25 | } |
| 26 | } |
| 27 |