Returns the code coverage information as a graph of node objects.
public function getReport() : Directory { if ($this->cachedReport === null) { $this->cachedReport = (new Builder($this->analyser())) ->build($this); } return $this->cachedReport; }