public function getNameWithVersionAndCodeCoverageDriver() : string { if ($this->hasPCOV()) { return sprintf('%s with PCOV %s', $this->getNameWithVersion(), phpversion('pcov')); } if ($this->hasXdebug()) { return sprintf('%s with Xdebug %s', $this->getNameWithVersion(), phpversion('xdebug')); } return $this->getNameWithVersion(); }