Automattic\WooCommerce\Api\Infrastructure\Schema

Type::nonNullpublic staticWC 1.0

Wrap a nullable schema type as non-null (T!).

Метод класса: Type{}

Хуков нет.

Возвращает

null. Ничего (null).

Использование

$result = Type::nonNull( $inner );
$inner(разное) (обязательный)
A nullable schema type.

Код Type::nonNull() WC 11.0.1

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