Skip to content

Commit

Permalink
Exclude 8.3 fixture
Browse files Browse the repository at this point in the history
  • Loading branch information
frankdejonge committed Aug 29, 2024
1 parent c8de93e commit ca99fd7
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/ConstructFinderTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,9 @@ public function it_finds_constructs_of_any_type_as_names(): void
SomeTrait::class,
];

$constructs = ConstructFinder::locatedIn(__DIR__ . '/Fixtures/')->findAllNames();
$constructs = ConstructFinder::locatedIn(__DIR__ . '/Fixtures/')
->exclude('*83+.php')
->findAllNames();

self::assertCount(4, $constructs);
self::assertContainsOnly('string', $constructs);
Expand Down

0 comments on commit ca99fd7

Please sign in to comment.