@@ -72,25 +72,25 @@ final class WP_Block_Bindings_Registry {
7272 *
7373 * @since 6.5.0
7474 *
75- * @param string $source_name The name of the source. It must be a string containing a namespace prefix, i.e.
76- * `my-plugin/my-custom-source`. It must only contain lowercase alphanumeric
77- * characters, the forward slash `/` and dashes.
78- * @param array $source_properties {
75+ * @param string $source_name The name of the source. It must be a string containing a namespace prefix, i.e.
76+ * `my-plugin/my-custom-source`. It must only contain lowercase alphanumeric
77+ * characters, the forward slash `/` and dashes.
78+ * @param array $source_properties {
7979 * The array of arguments that are used to register a source.
8080 *
81- * @type string $label The label of the source.
82- * @type callable $get_value_callback A callback executed when the source is processed during block rendering.
83- * The callback should have the following signature:
81+ * @type string $label The label of the source.
82+ * @type callable $get_value_callback A callback executed when the source is processed during block rendering.
83+ * The callback should have the following signature:
8484 *
85- * `function ( $source_args, $block_instance,$attribute_name): mixed`
86- * - @param array $source_args Array containing source arguments
87- * used to look up the override value,
88- * i.e. {"key": "foo"}.
89- * - @param WP_Block $block_instance The block instance.
90- * - @param string $attribute_name The name of the target attribute.
91- * The callback has a mixed return type; it may return a string to override
92- * the block's original value, null, false to remove an attribute, etc.
93- * @type string[] $uses_context (optional) Array of values to add to block `uses_context` needed by the source.
85+ * `function( $source_args, $block_instance, $attribute_name ): mixed`
86+ * - @param array $source_args Array containing source arguments
87+ * used to look up the override value,
88+ * i.e. {"key": "foo"}.
89+ * - @param WP_Block $block_instance The block instance.
90+ * - @param string $attribute_name The name of the target attribute.
91+ * The callback has a mixed return type; it may return a string to override
92+ * the block's original value, null, false to remove an attribute, etc.
93+ * @type string[] $uses_context Optional. Array of values to add to block `uses_context` needed by the source.
9494 * }
9595 * @return WP_Block_Bindings_Source|false Source when the registration was successful, or `false` on failure.
9696 */
0 commit comments