Skip to content

Commit d2cf845

Browse files
committed
Fix AutoloadFilesTest (see also phpstan/phpstan@1885415)
1 parent 4636999 commit d2cf845

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

tests/PHPStan/Composer/AutoloadFilesTest.php

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,15 @@ public function testExpectedFiles(): void
4646
sort($autoloadFiles);
4747

4848
$expectedFiles = [
49+
'guzzlehttp/guzzle/src/functions_include.php', // added to phpstan-dist/bootstrap.php
50+
'guzzlehttp/guzzlehttp/promises/src/functions_include.php', // added to phpstan-dist/bootstrap.php
51+
'guzzlehttp/guzzlehttp/psr7/src/functions_include.php', // added to phpstan-dist/bootstrap.php
4952
'hoa/consistency/Prelude.php', // Hoa isn't prefixed, no need to load this eagerly
5053
'hoa/protocol/Wrapper.php', // Hoa isn't prefixed, no need to load this eagerly
51-
'jetbrains/phpstorm-stubs/PhpStormStubsMap.php', // added to bin/phpstan
54+
'jetbrains/phpstorm-stubs/PhpStormStubsMap.php', // added to phpstan-dist/bootstrap.php
5255
'myclabs/deep-copy/src/DeepCopy/deep_copy.php', // dev dependency of PHPUnit
53-
'react/promise-timer/src/functions_include.php', // added to bin/phpstan
54-
'react/promise/src/functions_include.php', // added to bin/phpstan
56+
'react/promise-timer/src/functions_include.php', // added to phpstan-dist/bootstrap.php
57+
'react/promise/src/functions_include.php', // added to phpstan-dist/bootstrap.php
5558
'symfony/polyfill-ctype/bootstrap.php', // afaik polyfills aren't necessary
5659
'symfony/polyfill-mbstring/bootstrap.php', // afaik polyfills aren't necessary
5760
'symfony/polyfill-php73/bootstrap.php', // afaik polyfills aren't necessary

0 commit comments

Comments
 (0)