AS
Size: a a a
AS
P
AS
P
AS
P
public function __call($method, $parameters)
{
if (in_array($method, ['increment', 'decrement'])) {
return $this->$method(...$parameters);
}
if ($resolver = (static::$relationResolvers[get_class($this)][$method] ?? null)) {
return $resolver($this);
}
return $this->forwardCallTo($this->newQuery(), $method, $parameters);
}
P
AS
AS
P
P
AS
AS
P
P
P
AS
AS
P
AS