Skip to content

Commit

Permalink
test: Fix missing symbols (#1065)
Browse files Browse the repository at this point in the history
  • Loading branch information
VincentLanglet committed Sep 2, 2024
1 parent 32bd12e commit 1cfc944
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 9 deletions.
14 changes: 7 additions & 7 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions specs/exp/instanceof.php
Original file line number Diff line number Diff line change
Expand Up @@ -96,15 +96,15 @@
$file = new \stdClass();
($file instanceof \SplFileInfo) ? $file : new \SplFileInfo($file);
$file instanceof \SplFileInfo ? $file : new \SplFileInfo($file);
----
<?php
namespace Humbug\Acme;
$file = new \stdClass();
($file instanceof \SplFileInfo) ? $file : new \SplFileInfo($file);
$file instanceof \SplFileInfo ? $file : new \SplFileInfo($file);

PHP,

Expand Down
6 changes: 6 additions & 0 deletions src/Symbol/Reflector.php
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,12 @@
'ldap_connect_wallet',
'posix_pathconf',
'posix_fpathconf',

// Removed in https://github.com/JetBrains/phpstorm-stubs/pull/1627
'ares_gethostbyname',
'uv_ares_init_options',
'uv_handle_type',
'uv_read2_start',
];

/**
Expand Down

0 comments on commit 1cfc944

Please sign in to comment.