Automattic\WooCommerce\Api\Infrastructure\Schema
Type::nonNull
Wrap a nullable schema type as non-null (T!).
Метод класса: Type{}
Хуков нет.
Возвращает
null. Ничего (null).
Использование
$result = Type::nonNull( $inner );
- $inner(разное) (обязательный)
- A nullable schema type.
Код Type::nonNull() Type::nonNull WC 11.0.1
public static function nonNull( $inner ) {
return WebonyxType::nonNull( $inner );
}