Returns a depth limited clone of $this.
public function withMaxDepth(int $maxDepth) : static { $data = clone $this; $data->maxDepth = $maxDepth; return $data; }