Skip to content

Commit

Permalink
Fix issue identified by Psalm
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianbergmann committed Mar 23, 2021
1 parent 526479b commit f981f67
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Framework/TestCase.php
Expand Up @@ -275,12 +275,12 @@ abstract class TestCase extends Assert implements Reorderable, SelfDescribing, T
private $output = '';

/**
* @var string
* @var ?string
*/
private $outputExpectedRegex;

/**
* @var string
* @var ?string
*/
private $outputExpectedString;

Expand All @@ -305,7 +305,7 @@ abstract class TestCase extends Assert implements Reorderable, SelfDescribing, T
private $outputRetrievedForAssertion = false;

/**
* @var Snapshot
* @var ?Snapshot
*/
private $snapshot;

Expand Down

0 comments on commit f981f67

Please sign in to comment.