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/config/json_config_source.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'crates/shirabe/src/config') diff --git a/crates/shirabe/src/config/json_config_source.rs b/crates/shirabe/src/config/json_config_source.rs index 5dc5e8d..4575123 100644 --- a/crates/shirabe/src/config/json_config_source.rs +++ b/crates/shirabe/src/config/json_config_source.rs @@ -3,9 +3,10 @@ use anyhow::Result; use indexmap::IndexMap; use shirabe_php_shim::{ - PHP_EOL, PhpMixed, RuntimeException, Silencer, array_unshift, call_user_func_array, chmod, - explode, file_get_contents, file_put_contents, implode, is_writable, sprintf, + PHP_EOL, PhpMixed, RuntimeException, array_unshift, call_user_func_array, chmod, explode, + file_get_contents, file_put_contents, implode, is_writable, sprintf, }; +use crate::util::silencer::Silencer; use crate::config::config_source_interface::ConfigSourceInterface; use crate::json::json_file::JsonFile; -- cgit v1.3.1