Checks if a method name is a support check method (is_supported*).
Parameters
$namestringrequired- The method name.
Source
private static function is_support_check_method( string $name ): bool {
return isset( self::$support_check_methods[ $name ] );
}
Changelog
| Version | Description |
|---|---|
| 7.0.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.