Filter.php
Same filename in this branch
- 11.1.x vendor/phpunit/phpunit/src/Util/Filter.php
- 11.1.x vendor/myclabs/deep-copy/src/DeepCopy/Filter/Filter.php
- 11.1.x vendor/squizlabs/php_codesniffer/src/Filters/Filter.php
- 11.1.x core/modules/filter/src/Annotation/Filter.php
- 11.1.x core/modules/filter/src/Attribute/Filter.php
- 11.1.x core/modules/jsonapi/src/Query/Filter.php
Namespace
SebastianBergmann\CodeCoverageFile
-
vendor/
phpunit/ php-code-coverage/ src/ Filter.php
View source
<?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;
use function array_keys;
use function is_file;
use function realpath;
use function str_contains;
use function str_starts_with;
use SebastianBergmann\FileIterator\Facade as FileIteratorFacade;
final class Filter {
/**
* @psalm-var array<string,true>
*/
private array $files = [];
/**
* @psalm-var array<string,bool>
*/
private array $isFileCache = [];
/**
* @deprecated
*/
public function includeDirectory(string $directory, string $suffix = '.php', string $prefix = '') : void {
foreach ((new FileIteratorFacade())->getFilesAsArray($directory, $suffix, $prefix) as $file) {
$this->includeFile($file);
}
}
/**
* @psalm-param list<string> $files
*/
public function includeFiles(array $filenames) : void {
foreach ($filenames as $filename) {
$this->includeFile($filename);
}
}
public function includeFile(string $filename) : void {
$filename = realpath($filename);
if (!$filename) {
return;
}
$this->files[$filename] = true;
}
/**
* @deprecated
*/
public function excludeDirectory(string $directory, string $suffix = '.php', string $prefix = '') : void {
foreach ((new FileIteratorFacade())->getFilesAsArray($directory, $suffix, $prefix) as $file) {
$this->excludeFile($file);
}
}
/**
* @deprecated
*/
public function excludeFile(string $filename) : void {
$filename = realpath($filename);
if (!$filename || !isset($this->files[$filename])) {
return;
}
unset($this->files[$filename]);
}
public function isFile(string $filename) : bool {
if (isset($this->isFileCache[$filename])) {
return $this->isFileCache[$filename];
}
if ($filename === '-' || str_starts_with($filename, 'vfs://') || str_contains($filename, 'xdebug://debug-eval') || str_contains($filename, 'eval()\'d code') || str_contains($filename, 'runtime-created function') || str_contains($filename, 'runkit created function') || str_contains($filename, 'assert code') || str_contains($filename, 'regexp code') || str_contains($filename, 'Standard input code')) {
$isFile = false;
}
else {
$isFile = is_file($filename);
}
$this->isFileCache[$filename] = $isFile;
return $isFile;
}
public function isExcluded(string $filename) : bool {
return !isset($this->files[$filename]) || !$this->isFile($filename);
}
/**
* @psalm-return list<string>
*/
public function files() : array {
return array_keys($this->files);
}
public function isEmpty() : bool {
return empty($this->files);
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
Filter |