JsonExpression::getValue()

mixed getValue() Get the value of the expression. Return Value mixed

JsonExpression

JsonExpression class JsonExpression extends Expression (View source) Methods void __construct(mixed $value) Create a new raw query expression. mixed getValue() Get the value of the expression. string __toString() Get the value of the expression.

JsonableInterface::toJson()

string toJson(int $options) Convert the object to its JSON representation. Parameters int $options Return Value string

JsonableInterface

JsonableInterface interface JsonableInterface (View source) Methods string toJson(int $options) Convert the object to its JSON representation.

Jsonable::toJson()

string toJson(int $options) Convert the object to its JSON representation. Parameters int $options Return Value string

Jsonable

Jsonable interface Jsonable (View source) Methods string toJson(int $options) Convert the object to its JSON representation.

JoinClause::__construct()

void __construct(Builder $parentQuery, string $type, string $table) Create a new join clause instance. Parameters Builder $parentQuery string $type string $table Return Value void

JoinClause::__callStatic()

static mixed __callStatic(string $method, array $parameters) Dynamically handle calls to the class. Parameters string $method array $parameters Return Value mixed Exceptions BadMethodCallException

JoinClause::__call()

mixed __call(string $method, array $parameters) Dynamically handle calls to the class. Parameters string $method array $parameters Return Value mixed Exceptions BadMethodCallException

JoinClause::whereYear()

Builder|Builder whereYear(string $column, string $operator, mixed $value = null, string $boolean = 'and') Add a "where year" statement to the query. Parameters string $column string $operator mixed $value string $boolean Return Value Builder|Builder