*/ protected function get_object_types(): array { $public_taxonomies = get_taxonomies( array( '_builtin' => false ) ); /** @phpstan-var array */ return array_diff( $public_taxonomies, get_taxonomies( array( '_pll' => true ) ) ); } /** * Returns the description used in the JSON schema. * * @since 3.7 * * @return string */ protected function get_description(): string { return __( 'List of taxonomies to translate.', 'polylang' ); } }