Skip to main content
Drupal API
User account menu
  • Log in

Breadcrumb

  1. Drupal Core 11.1.x
  2. CachingFileAnalyser.php

function CachingFileAnalyser::__construct

File

vendor/phpunit/php-code-coverage/src/StaticAnalysis/CachingFileAnalyser.php, line 36

Class

CachingFileAnalyser
@internal This class is not covered by the backward compatibility promise for phpunit/php-code-coverage

Namespace

SebastianBergmann\CodeCoverage\StaticAnalysis

Code

public function __construct(string $directory, FileAnalyser $analyser, bool $useAnnotationsForIgnoringCode, bool $ignoreDeprecatedCode) {
    Filesystem::createDirectory($directory);
    $this->analyser = $analyser;
    $this->directory = $directory;
    $this->useAnnotationsForIgnoringCode = $useAnnotationsForIgnoringCode;
    $this->ignoreDeprecatedCode = $ignoreDeprecatedCode;
}
RSS feed
Powered by Drupal