Flow PHP

ClassStringType implements Type

Read onlyYes
FinalYes
Tags
template
implements

Interfaces

Type

Properties

$class  : string|null

Methods

__construct()  : mixed
assert()  : T
Checks that the value is of the type of this object, throwing when it is not.
cast()  : T
Takes a value and when necessary casts it to the type of this object.
fromArray()  : Type<string|int, class-string>
isValid()  : bool
Checks if the value is of the type of this object, returning a boolean instead of throwing.
normalize()  : array<string, mixed>
toString()  : string
Returns a string representation of the type.

Properties

Methods

__construct()

public __construct([null|T $class = null ]) : mixed
Parameters
$class : null|T = null

assert()

Checks that the value is of the type of this object, throwing when it is not.

public assert(mixed $value) : T
Parameters
$value : mixed
Return values
T

cast()

Takes a value and when necessary casts it to the type of this object.

public cast(mixed $value) : T
Parameters
$value : mixed
Return values
T

fromArray()

public static fromArray(array<string, mixed> $data) : Type<string|int, class-string>
Parameters
$data : array<string, mixed>
Return values
Type<string|int, class-string>

isValid()

Checks if the value is of the type of this object, returning a boolean instead of throwing.

public isValid(mixed $value) : bool

When this method returns true, static analysis tools narrow the value's type to T at the call site (via @assert-if-true). Use this when you want to branch on the result; use assert() when you want the call to fail loudly on a mismatch.

Parameters
$value : mixed
Return values
bool

normalize()

public normalize() : array<string, mixed>
Return values
array<string, mixed>

toString()

Returns a string representation of the type.

public toString() : string
  • string - for type_string()
  • int - for type_int()
  • ?float - for type_optional(type_float())
Return values
string
On this page

Search results