* @since 2.0 */ interface MatcherInterface { /** * Check if the value is correct according current matcher. * @param mixed $value */ public function check($value); }