From e85c1c6c86a42b9aee5687b943743520fc677844 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Sun, 17 May 2026 09:59:32 +0900 Subject: fix(php-shim): add missing stub functions, constants, and types Co-Authored-By: Claude Sonnet 4.6 --- crates/shirabe/src/downloader/file_downloader.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'crates/shirabe/src/downloader') diff --git a/crates/shirabe/src/downloader/file_downloader.rs b/crates/shirabe/src/downloader/file_downloader.rs index 5b002ff..47c216a 100644 --- a/crates/shirabe/src/downloader/file_downloader.rs +++ b/crates/shirabe/src/downloader/file_downloader.rs @@ -8,11 +8,11 @@ use shirabe_external_packages::react::promise::promise_interface::PromiseInterfa use shirabe_external_packages::react::promise::resolve as react_promise_resolve; use shirabe_php_shim::{ DIRECTORY_SEPARATOR, InvalidArgumentException, PATHINFO_BASENAME, PATHINFO_EXTENSION, - PHP_URL_PATH, PhpMixed, RuntimeException, Silencer, UnexpectedValueException, array_search, - array_shift, file_exists, filesize, get_class, hash, hash_file, in_array, is_dir, - is_executable, parse_url, pathinfo, realpath, rtrim, spl_object_hash, strlen, strpos, strtr, - trim, umask, usleep, + PHP_URL_PATH, PhpMixed, RuntimeException, UnexpectedValueException, array_search, array_shift, + file_exists, filesize, get_class, hash, hash_file, in_array, is_dir, is_executable, parse_url, + pathinfo, realpath, rtrim, spl_object_hash, strlen, strpos, strtr, trim, umask, usleep, }; +use crate::util::silencer::Silencer; use crate::cache::Cache; use crate::config::Config; -- cgit v1.3.1