$this
public function __call(string $name, array $arguments) : static { $processor = strtolower(preg_replace([ '/([A-Z]+)([A-Z][a-z])/', '/([a-z\\d])([A-Z])/', ], '\\1_\\2', $name)); $this->custom($processor, ...$arguments); return $this; }