aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/src/util
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2026-05-17 09:59:32 +0900
committernsfisis <nsfisis@gmail.com>2026-05-17 09:59:40 +0900
commite85c1c6c86a42b9aee5687b943743520fc677844 (patch)
tree3cffb2b29c77e9558190b8ed8d063f6f582e5280 /crates/shirabe/src/util
parent8fb6de392bbac104c07a5cdbac12a4fd25ab1127 (diff)
downloadphp-shirabe-e85c1c6c86a42b9aee5687b943743520fc677844.tar.gz
php-shirabe-e85c1c6c86a42b9aee5687b943743520fc677844.tar.zst
php-shirabe-e85c1c6c86a42b9aee5687b943743520fc677844.zip
fix(php-shim): add missing stub functions, constants, and types
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Diffstat (limited to 'crates/shirabe/src/util')
-rw-r--r--crates/shirabe/src/util/http_downloader.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/crates/shirabe/src/util/http_downloader.rs b/crates/shirabe/src/util/http_downloader.rs
index eb28ca0..5786da3 100644
--- a/crates/shirabe/src/util/http_downloader.rs
+++ b/crates/shirabe/src/util/http_downloader.rs
@@ -7,10 +7,11 @@ use shirabe_external_packages::composer::pcre::preg::Preg;
use shirabe_external_packages::react::promise::promise::Promise;
use shirabe_external_packages::react::promise::promise_interface::PromiseInterface;
use shirabe_php_shim::{
- InvalidArgumentException, LogicException, PhpMixed, Silencer, array_replace_recursive, chr,
+ InvalidArgumentException, LogicException, PhpMixed, array_replace_recursive, chr,
extension_loaded, file_get_contents, function_exists, implode, is_numeric, max, min,
rawurldecode, stream_context_create, stripos, strpos, substr, ucfirst,
};
+use crate::util::silencer::Silencer;
use shirabe_semver::constraint::constraint::Constraint;
use crate::composer::Composer;