Skip to content

Commit

Permalink
Fix AutoloadFilesTest (see also phpstan/phpstan@1885415)
Browse files Browse the repository at this point in the history
  • Loading branch information
ondrejmirtes committed Sep 24, 2020
1 parent 4636999 commit d2cf845
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions tests/PHPStan/Composer/AutoloadFilesTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,15 @@ public function testExpectedFiles(): void
sort($autoloadFiles);

$expectedFiles = [
'guzzlehttp/guzzle/src/functions_include.php', // added to phpstan-dist/bootstrap.php
'guzzlehttp/guzzlehttp/promises/src/functions_include.php', // added to phpstan-dist/bootstrap.php
'guzzlehttp/guzzlehttp/psr7/src/functions_include.php', // added to phpstan-dist/bootstrap.php
'hoa/consistency/Prelude.php', // Hoa isn't prefixed, no need to load this eagerly
'hoa/protocol/Wrapper.php', // Hoa isn't prefixed, no need to load this eagerly
'jetbrains/phpstorm-stubs/PhpStormStubsMap.php', // added to bin/phpstan
'jetbrains/phpstorm-stubs/PhpStormStubsMap.php', // added to phpstan-dist/bootstrap.php
'myclabs/deep-copy/src/DeepCopy/deep_copy.php', // dev dependency of PHPUnit
'react/promise-timer/src/functions_include.php', // added to bin/phpstan
'react/promise/src/functions_include.php', // added to bin/phpstan
'react/promise-timer/src/functions_include.php', // added to phpstan-dist/bootstrap.php
'react/promise/src/functions_include.php', // added to phpstan-dist/bootstrap.php
'symfony/polyfill-ctype/bootstrap.php', // afaik polyfills aren't necessary
'symfony/polyfill-mbstring/bootstrap.php', // afaik polyfills aren't necessary
'symfony/polyfill-php73/bootstrap.php', // afaik polyfills aren't necessary
Expand Down

0 comments on commit d2cf845

Please sign in to comment.