diff --git a/src/wp-includes/block-bindings.php b/src/wp-includes/block-bindings.php
index d0def1c86e..e49fa4afb2 100644
|
a
|
b
|
function register_block_bindings_source( $source_name, array $source_properties
|
| 48 | 48 | * @since 6.5.0 |
| 49 | 49 | * |
| 50 | 50 | * @param string $source_name Block bindings source name including namespace. |
| 51 | | * @return array|false The unregistred block bindings source on success and `false` otherwise. |
| | 51 | * @return array|false The unregistered block bindings source on success and `false` otherwise. |
| 52 | 52 | */ |
| 53 | 53 | function unregister_block_bindings_source( $source_name ) { |
| 54 | 54 | return WP_Block_Bindings_Registry::get_instance()->unregister( $source_name ); |
diff --git a/src/wp-includes/class-wp-block-bindings-registry.php b/src/wp-includes/class-wp-block-bindings-registry.php
index 8b36387552..d34733327a 100644
|
a
|
b
|
final class WP_Block_Bindings_Registry {
|
| 116 | 116 | * @since 6.5.0 |
| 117 | 117 | * |
| 118 | 118 | * @param string $source_name Block bindings source name including namespace. |
| 119 | | * @return array|false The unregistred block bindings source on success and `false` otherwise. |
| | 119 | * @return array|false The unregistered block bindings source on success and `false` otherwise. |
| 120 | 120 | */ |
| 121 | 121 | public function unregister( $source_name ) { |
| 122 | 122 | if ( ! $this->is_registered( $source_name ) ) { |