wp-includes/class-wp-block-type.php:626Get block uses context.
string[]One hook fires while WP_Block_Type::get_uses_context() runs, in this order:
Filters the registered uses context for a block type.
public function get_uses_context() { /** * Filters the registered uses context for a block type. * * @since 6.5.0 * * @param string[] $uses_context Array of registered uses context for a block type. * @param WP_Block_Type $block_type The full block type object. */ return apply_filters( 'get_block_type_uses_context', $this->uses_context, $this ); }Introduced in 6.5.0. Unchanged from 6.7.7 through 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.
src/wp-includes/class-wp-block-type.php, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.