diff options
| author | nsfisis <nsfisis@gmail.com> | 2026-05-17 09:59:32 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2026-05-17 09:59:40 +0900 |
| commit | e85c1c6c86a42b9aee5687b943743520fc677844 (patch) | |
| tree | 3cffb2b29c77e9558190b8ed8d063f6f582e5280 /crates/shirabe/src/config | |
| parent | 8fb6de392bbac104c07a5cdbac12a4fd25ab1127 (diff) | |
| download | php-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/config')
| -rw-r--r-- | crates/shirabe/src/config/json_config_source.rs | 5 |
1 files changed, 3 insertions, 2 deletions
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; |
