Skip to content

Commit 1cfc944

Browse files
test: Fix missing symbols (#1065)
1 parent 32bd12e commit 1cfc944

File tree

3 files changed

+15
-9
lines changed

3 files changed

+15
-9
lines changed

composer.lock

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

specs/exp/instanceof.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,15 +96,15 @@
9696
9797
$file = new \stdClass();
9898
99-
($file instanceof \SplFileInfo) ? $file : new \SplFileInfo($file);
99+
$file instanceof \SplFileInfo ? $file : new \SplFileInfo($file);
100100
101101
----
102102
<?php
103103
104104
namespace Humbug\Acme;
105105
106106
$file = new \stdClass();
107-
($file instanceof \SplFileInfo) ? $file : new \SplFileInfo($file);
107+
$file instanceof \SplFileInfo ? $file : new \SplFileInfo($file);
108108

109109
PHP,
110110

src/Symbol/Reflector.php

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -182,6 +182,12 @@
182182
'ldap_connect_wallet',
183183
'posix_pathconf',
184184
'posix_fpathconf',
185+
186+
// Removed in https://github.com/JetBrains/phpstorm-stubs/pull/1627
187+
'ares_gethostbyname',
188+
'uv_ares_init_options',
189+
'uv_handle_type',
190+
'uv_read2_start',
185191
];
186192

187193
/**

0 commit comments

Comments
 (0)