Methods |
protected
|
withoutRecursion(callable $callback, mixed $default = null): mixed
Prevent a method from being called multiple times on the same object within the same call stack.
Prevent a method from being called multiple times on the same object within the same call stack.
|
#
|
protected
static
|
clearRecursiveCallValue(object $object, string $hash)
Remove an entry from the recursion cache for an object.
Remove an entry from the recursion cache for an object.
|
#
|
protected
static
|
getRecursiveCallStack(object $object): array
Get the stack of methods being called recursively for the current object.
Get the stack of methods being called recursively for the current object.
|
#
|
protected
static
|
getRecursionCache(): WeakMap
Get the current recursion cache being used by the model.
Get the current recursion cache being used by the model.
|
#
|
protected
static
|
setRecursiveCallValue(object $object, string $hash, mixed $value): mixed
Set a value in the recursion cache for the given object and method.
Set a value in the recursion cache for the given object and method.
|
#
|