aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/src/repository/filesystem_repository.rs
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/repository/filesystem_repository.rs
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/repository/filesystem_repository.rs')
-rw-r--r--crates/shirabe/src/repository/filesystem_repository.rs9
1 files changed, 5 insertions, 4 deletions
diff --git a/crates/shirabe/src/repository/filesystem_repository.rs b/crates/shirabe/src/repository/filesystem_repository.rs
index 4ca5ab1..374c8e9 100644
--- a/crates/shirabe/src/repository/filesystem_repository.rs
+++ b/crates/shirabe/src/repository/filesystem_repository.rs
@@ -6,11 +6,12 @@ use anyhow::Result;
use indexmap::IndexMap;
use shirabe_external_packages::composer::pcre::preg::Preg;
use shirabe_php_shim::{
- InvalidArgumentException, LogicException, PhpMixed, SORT_NATURAL, Silencer,
- UnexpectedValueException, array_flip, dirname, r#eval, file_get_contents, get_class,
- get_debug_type, in_array, is_array, is_int, is_null, is_string, ksort, php_dir, realpath, sort,
- sort_with_flags, str_repeat, strtr, trim, usort, var_export,
+ InvalidArgumentException, LogicException, PhpMixed, SORT_NATURAL, UnexpectedValueException,
+ array_flip, dirname, r#eval, file_get_contents, get_class, get_debug_type, in_array, is_array,
+ is_int, is_null, is_string, ksort, php_dir, realpath, sort, sort_with_flags, str_repeat, strtr,
+ trim, usort, var_export,
};
+use crate::util::silencer::Silencer;
use crate::installed_versions::InstalledVersions;
use crate::installer::installation_manager::InstallationManager;