Checks if a method name is a generating method (generate_*, convert_text_to_speech*).
Parameters
$namestringrequired- The method name.
Source
private static function is_generating_method( string $name ): bool {
return isset( self::$generating_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.