@@ -147,11 +147,6 @@ final class Configuration
147147 */
148148 private $ warmCoverageCache ;
149149
150- /**
151- * @var ?bool
152- */
153- private $ forceCoverageCache ;
154-
155150 /**
156151 * @var ?bool
157152 */
@@ -480,7 +475,7 @@ final class Configuration
480475 /**
481476 * @param null|int|string $columns
482477 */
483- public function __construct (?string $ argument , ?string $ atLeastVersion , ?bool $ backupGlobals , ?bool $ backupStaticAttributes , ?bool $ beStrictAboutChangesToGlobalState , ?bool $ beStrictAboutResourceUsageDuringSmallTests , ?string $ bootstrap , ?bool $ cacheResult , ?string $ cacheResultFile , ?bool $ checkVersion , ?string $ colors , $ columns , ?string $ configuration , ?string $ coverageClover , ?string $ coverageCobertura , ?string $ coverageCrap4J , ?string $ coverageHtml , ?string $ coveragePhp , ?string $ coverageText , ?bool $ coverageTextShowUncoveredFiles , ?bool $ coverageTextShowOnlySummary , ?string $ coverageXml , ?bool $ pathCoverage , ?string $ coverageCacheDirectory , ?bool $ warmCoverageCache , ?bool $ forceCoverageCache , ?bool $ debug , ?int $ defaultTimeLimit , ?bool $ disableCodeCoverageIgnore , ?bool $ disallowTestOutput , ?bool $ disallowTodoAnnotatedTests , ?bool $ enforceTimeLimit , ?array $ excludeGroups , ?int $ executionOrder , ?int $ executionOrderDefects , ?array $ extensions , ?array $ unavailableExtensions , ?bool $ failOnEmptyTestSuite , ?bool $ failOnIncomplete , ?bool $ failOnRisky , ?bool $ failOnSkipped , ?bool $ failOnWarning , ?string $ filter , ?bool $ generateConfiguration , ?bool $ migrateConfiguration , ?array $ groups , ?array $ testsCovering , ?array $ testsUsing , ?bool $ help , ?string $ includePath , ?array $ iniSettings , ?string $ junitLogfile , ?bool $ listGroups , ?bool $ listSuites , ?bool $ listTests , ?string $ listTestsXml , ?string $ loader , ?bool $ noCoverage , ?bool $ noExtensions , ?bool $ noInteraction , ?bool $ noLogging , ?string $ printer , ?bool $ processIsolation , ?int $ randomOrderSeed , ?int $ repeat , ?bool $ reportUselessTests , ?bool $ resolveDependencies , ?bool $ reverseList , ?bool $ stderr , ?bool $ strictCoverage , ?bool $ stopOnDefect , ?bool $ stopOnError , ?bool $ stopOnFailure , ?bool $ stopOnIncomplete , ?bool $ stopOnRisky , ?bool $ stopOnSkipped , ?bool $ stopOnWarning , ?string $ teamcityLogfile , ?array $ testdoxExcludeGroups , ?array $ testdoxGroups , ?string $ testdoxHtmlFile , ?string $ testdoxTextFile , ?string $ testdoxXmlFile , ?array $ testSuffixes , ?string $ testSuite , array $ unrecognizedOptions , ?string $ unrecognizedOrderBy , ?bool $ useDefaultConfiguration , ?bool $ verbose , ?bool $ version , ?array $ coverageFilter , ?string $ xdebugFilterFile )
478+ public function __construct (?string $ argument , ?string $ atLeastVersion , ?bool $ backupGlobals , ?bool $ backupStaticAttributes , ?bool $ beStrictAboutChangesToGlobalState , ?bool $ beStrictAboutResourceUsageDuringSmallTests , ?string $ bootstrap , ?bool $ cacheResult , ?string $ cacheResultFile , ?bool $ checkVersion , ?string $ colors , $ columns , ?string $ configuration , ?string $ coverageClover , ?string $ coverageCobertura , ?string $ coverageCrap4J , ?string $ coverageHtml , ?string $ coveragePhp , ?string $ coverageText , ?bool $ coverageTextShowUncoveredFiles , ?bool $ coverageTextShowOnlySummary , ?string $ coverageXml , ?bool $ pathCoverage , ?string $ coverageCacheDirectory , ?bool $ warmCoverageCache , ?bool $ debug , ?int $ defaultTimeLimit , ?bool $ disableCodeCoverageIgnore , ?bool $ disallowTestOutput , ?bool $ disallowTodoAnnotatedTests , ?bool $ enforceTimeLimit , ?array $ excludeGroups , ?int $ executionOrder , ?int $ executionOrderDefects , ?array $ extensions , ?array $ unavailableExtensions , ?bool $ failOnEmptyTestSuite , ?bool $ failOnIncomplete , ?bool $ failOnRisky , ?bool $ failOnSkipped , ?bool $ failOnWarning , ?string $ filter , ?bool $ generateConfiguration , ?bool $ migrateConfiguration , ?array $ groups , ?array $ testsCovering , ?array $ testsUsing , ?bool $ help , ?string $ includePath , ?array $ iniSettings , ?string $ junitLogfile , ?bool $ listGroups , ?bool $ listSuites , ?bool $ listTests , ?string $ listTestsXml , ?string $ loader , ?bool $ noCoverage , ?bool $ noExtensions , ?bool $ noInteraction , ?bool $ noLogging , ?string $ printer , ?bool $ processIsolation , ?int $ randomOrderSeed , ?int $ repeat , ?bool $ reportUselessTests , ?bool $ resolveDependencies , ?bool $ reverseList , ?bool $ stderr , ?bool $ strictCoverage , ?bool $ stopOnDefect , ?bool $ stopOnError , ?bool $ stopOnFailure , ?bool $ stopOnIncomplete , ?bool $ stopOnRisky , ?bool $ stopOnSkipped , ?bool $ stopOnWarning , ?string $ teamcityLogfile , ?array $ testdoxExcludeGroups , ?array $ testdoxGroups , ?string $ testdoxHtmlFile , ?string $ testdoxTextFile , ?string $ testdoxXmlFile , ?array $ testSuffixes , ?string $ testSuite , array $ unrecognizedOptions , ?string $ unrecognizedOrderBy , ?bool $ useDefaultConfiguration , ?bool $ verbose , ?bool $ version , ?array $ coverageFilter , ?string $ xdebugFilterFile )
484479 {
485480 $ this ->argument = $ argument ;
486481 $ this ->atLeastVersion = $ atLeastVersion ;
@@ -508,7 +503,6 @@ public function __construct(?string $argument, ?string $atLeastVersion, ?bool $b
508503 $ this ->pathCoverage = $ pathCoverage ;
509504 $ this ->coverageCacheDirectory = $ coverageCacheDirectory ;
510505 $ this ->warmCoverageCache = $ warmCoverageCache ;
511- $ this ->forceCoverageCache = $ forceCoverageCache ;
512506 $ this ->debug = $ debug ;
513507 $ this ->defaultTimeLimit = $ defaultTimeLimit ;
514508 $ this ->disableCodeCoverageIgnore = $ disableCodeCoverageIgnore ;
@@ -1018,23 +1012,6 @@ public function warmCoverageCache(): bool
10181012 return $ this ->warmCoverageCache ;
10191013 }
10201014
1021- public function hasForceCoverageCache (): bool
1022- {
1023- return $ this ->forceCoverageCache !== null ;
1024- }
1025-
1026- /**
1027- * @throws Exception
1028- */
1029- public function forceCoverageCache (): bool
1030- {
1031- if ($ this ->forceCoverageCache === null ) {
1032- throw new Exception ;
1033- }
1034-
1035- return $ this ->forceCoverageCache ;
1036- }
1037-
10381015 public function hasDebug (): bool
10391016 {
10401017 return $ this ->debug !== null ;
0 commit comments