class JsonSchema

Methods

static Type
__callStatic(string $name, array $arguments)

Dynamically pass static methods to the schema instance.

static ObjectType
object(Closure|array<string $, Type> $properties = '[]')

No description

static IntegerType
integer()

No description

static NumberType
number()

No description

static StringType
string()

No description

static BooleanType
boolean()

No description

static ArrayType
array()

No description

Details

at line 23
static Type __callStatic(string $name, array $arguments)

Dynamically pass static methods to the schema instance.

Parameters

string $name
array $arguments

Return Value

Type

at line 18
static ObjectType object(Closure|array<string $, Type> $properties = '[]')

No description

Parameters

Closure|array<string $
Type> $properties

Return Value

ObjectType

at line 18
static IntegerType integer()

No description

Return Value

IntegerType

at line 18
static NumberType number()

No description

Return Value

NumberType

at line 18
static StringType string()

No description

Return Value

StringType

at line 18
static BooleanType boolean()

No description

Return Value

BooleanType

at line 18
static ArrayType array()

No description

Return Value

ArrayType