📁 File Manager Pro
v10.0.3 | PHP: 8.2.31
Server: LiteSpeed
2026-07-03 16:25:15
📂
/ (Root)
/
home
/
orkouolp
/
web
/
testing.orkobd
/
laravel
/
vendor
/
phpunit
/
phpunit
/
tests
/
_files
📍 /home/orkouolp/web/testing.orkobd/laravel/vendor/phpunit/phpunit/tests/_files
🔄 Refresh
✏️
Editing: skip-if-requires-code-coverage-driver.php
Writable
<?php declare(strict_types=1); /* * This file is part of PHPUnit. * * (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. */ if (\extension_loaded('pcov')) { return; } if (!\extension_loaded('xdebug')) { print 'skip: This test requires a code coverage driver'; } if (\version_compare(\phpversion('xdebug'), '3.1', '>=') && \in_array('coverage', xdebug_info('mode'), true)) { return; } $mode = \getenv('XDEBUG_MODE'); if ($mode === false || $mode === '') { $mode = \ini_get('xdebug.mode'); } if ($mode === false || !\in_array('coverage', \explode(',', $mode), true)) { print 'skip: XDEBUG_MODE=coverage or xdebug.mode=coverage has to be set'; }
💾 Save Changes
❌ Cancel