Automattic\WooCommerce\Api\Infrastructure\Schema

Type::listOfpublic staticWC 1.0

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() code WC 10.9.1

public static function listOf( $inner ) {
	return WebonyxType::listOf( $inner );
}