public
|
when<TWhenParameter, TWhenReturnType>(
(Closure($this): TWhenParameter)|TWhenParameter|null $value = null,
(callable($this, TWhenParameter): TWhenReturnType)|null $callback = null,
(callable($this, TWhenParameter): TWhenReturnType)|null $default = null,
): $this|TWhenReturnType
Apply the callback if the given "value" is (or resolves to) truthy.
Apply the callback if the given "value" is (or resolves to) truthy.
|
#
|
public
|
unless<TUnlessParameter, TUnlessReturnType>(
(Closure($this): TUnlessParameter)|TUnlessParameter|null $value = null,
(callable($this, TUnlessParameter): TUnlessReturnType)|null $callback = null,
(callable($this, TUnlessParameter): TUnlessReturnType)|null $default = null,
): $this|TUnlessReturnType
Apply the callback if the given "value" is (or resolves to) falsy.
Apply the callback if the given "value" is (or resolves to) falsy.
|
#
|