Skip to content

Commit

Permalink
cs
Browse files Browse the repository at this point in the history
  • Loading branch information
clxmstaab committed Feb 23, 2022
1 parent 06ba055 commit 2f3e106
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/PHPStan/Analyser/NodeScopeResolverTest.php
Expand Up @@ -711,17 +711,17 @@ public function dataFileAsserts(): iterable
yield from $this->gatherAssertTypes(__DIR__ . '/data/property-template-tag.php');
}

yield from $this->gatherAssertTypes(__DIR__ . '/data/bug-6672.php');

if (PHP_VERSION_ID < 80000) {
yield from $this->gatherAssertTypes(__DIR__ . '/data/preg_match_php7.php');
}
if (PHP_VERSION_ID >= 80000) {
yield from $this->gatherAssertTypes(__DIR__ . '/data/preg_match_php8.php');
}

require_once __DIR__ . '/data/countable.php';
yield from $this->gatherAssertTypes(__DIR__ . '/data/countable.php');

yield from $this->gatherAssertTypes(__DIR__ . '/data/bug-6672.php');
}

/**
Expand Down

0 comments on commit 2f3e106

Please sign in to comment.