🤩 File Manager - Mr.X
PHP:
8.3.33
Server:
Apache
OS:
Linux 5.14.0-611.49.1.el9_7.x86_64
User:
websparkit
Navigate
Upload:
Upload
New File
New Folder
Editing:Driver.php
<?php declare(strict_types=1); /* * This file is part of phpunit/php-code-coverage. * * (c) Sebastian Bergmann <sebastian@phpunit.de> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace SebastianBergmann\CodeCoverage\Driver; use function sprintf; use SebastianBergmann\CodeCoverage\BranchAndPathCoverageNotSupportedException; use SebastianBergmann\CodeCoverage\Data\RawCodeCoverageData; /** * @internal This class is not covered by the backward compatibility promise for phpunit/php-code-coverage */ abstract class Driver { /** * @see http://xdebug.org/docs/code_coverage */ public const int LINE_NOT_EXECUTABLE = -2; /** * @see http://xdebug.org/docs/code_coverage */ public const int LINE_NOT_EXECUTED = -1; /** * @see http://xdebug.org/docs/code_coverage */ public const int LINE_EXECUTED = 1; /** * @see http://xdebug.org/docs/code_coverage */ public const int BRANCH_NOT_HIT = 0; /** * @see http://xdebug.org/docs/code_coverage */ public const int BRANCH_HIT = 1; private bool $collectBranchAndPathCoverage = false; public function canCollectBranchAndPathCoverage(): bool { return false; } public function collectsBranchAndPathCoverage(): bool { return $this->collectBranchAndPathCoverage; } /** * @throws BranchAndPathCoverageNotSupportedException */ public function enableBranchAndPathCoverage(): void { if (!$this->canCollectBranchAndPathCoverage()) { throw new BranchAndPathCoverageNotSupportedException( sprintf( '%s does not support branch and path coverage', $this->nameAndVersion(), ), ); } $this->collectBranchAndPathCoverage = true; } public function disableBranchAndPathCoverage(): void { $this->collectBranchAndPathCoverage = false; } public function isPcov(): bool { return false; } public function isXdebug(): bool { return false; } abstract public function nameAndVersion(): string; abstract public function start(): void; abstract public function stop(): RawCodeCoverageData; }
Save Changes
Cancel
Create New File
Create New Folder