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/repository/filesystem_repository.rs | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'crates/shirabe/src/repository/filesystem_repository.rs') 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; -- cgit v1.3.1