Skip to content

Commit

Permalink
Fix CS/WS issues
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianbergmann committed May 23, 2018
1 parent b70ff62 commit 5635f85
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
5 changes: 0 additions & 5 deletions src/Framework/Constraint/IsEqual.php
Expand Up @@ -50,11 +50,6 @@ class IsEqual extends Constraint
*/
protected $ignoreCase = false;

/**
* @var SebastianBergmann\Comparator\ComparisonFailure
*/
protected $lastFailure;

/**
* @param mixed $value
* @param float $delta
Expand Down
2 changes: 1 addition & 1 deletion src/Framework/TestCase.php
Expand Up @@ -292,7 +292,7 @@ abstract class TestCase extends Assert implements Test, SelfDescribing
private $outputBufferingLevel;

/**
* @var SebastianBergmann\GlobalState\Snapshot
* @var Snapshot
*/
private $snapshot;

Expand Down
3 changes: 2 additions & 1 deletion src/TextUI/TestRunner.php
Expand Up @@ -43,6 +43,7 @@
use SebastianBergmann\CodeCoverage\Report\PHP as PhpReport;
use SebastianBergmann\CodeCoverage\Report\Text as TextReport;
use SebastianBergmann\CodeCoverage\Report\Xml\Facade as XmlReport;
use SebastianBergmann\Comparator\Comparator;
use SebastianBergmann\Environment\Runtime;

/**
Expand Down Expand Up @@ -428,7 +429,7 @@ public function doRun(Test $suite, array $arguments = [], $exit = true)
);

$codeCoverage->setUnintentionallyCoveredSubclassesWhitelist(
[SebastianBergmann\Comparator\Comparator::class]
[Comparator::class]
);

$codeCoverage->setCheckForUnintentionallyCoveredCode(
Expand Down

0 comments on commit 5635f85

Please sign in to comment.