protected function getFunctionReport() {
        $data = $this->getFunctionStats();
        usort( $data, static function ( $a, $b ) {
            return $b['real'] <=> $a['real']; // descending
        } );