Automattic\WooCommerce\Api\Infrastructure\Schema
Type::listOf
Wrap a schema type as a list ([T]).
Method of the class: Type{}
No Hooks.
Returns
null. Nothing (null).
Usage
$result = Type::listOf( $inner );
- $inner(mixed) (required)
- A schema type.
Type::listOf() Type::listOf code WC 10.9.1
public static function listOf( $inner ) {
return WebonyxType::listOf( $inner );
}