diff options
| author | nsfisis <nsfisis@gmail.com> | 2026-05-17 14:59:32 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2026-05-17 14:59:32 +0900 |
| commit | 79bcd3a9ce71954ce7b257e5f3ca1c147c0d974a (patch) | |
| tree | 3e6b47ae4e5f351bdbf25e8dd5220714dea3746a /crates/shirabe/src/io/null_io.rs | |
| parent | 3e21569688cf0c8a1918c73ff96cb1b3aeffe0b3 (diff) | |
| download | php-shirabe-79bcd3a9ce71954ce7b257e5f3ca1c147c0d974a.tar.gz php-shirabe-79bcd3a9ce71954ce7b257e5f3ca1c147c0d974a.tar.zst php-shirabe-79bcd3a9ce71954ce7b257e5f3ca1c147c0d974a.zip | |
fix(compile): implement IOInterface and LoggerInterface for ConsoleIO
- Move standalone pub fn methods into impl IOInterface for ConsoleIO
- Add impl LoggerInterface for ConsoleIO delegating to BaseIO
- Fix load_configuration signature to take &mut Config and return Result
- Fix index::IndexMap import paths to indexmap::IndexMap in ConsoleIO and NullIO
Diffstat (limited to 'crates/shirabe/src/io/null_io.rs')
| -rw-r--r-- | crates/shirabe/src/io/null_io.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/shirabe/src/io/null_io.rs b/crates/shirabe/src/io/null_io.rs index 66f7123..10d56a1 100644 --- a/crates/shirabe/src/io/null_io.rs +++ b/crates/shirabe/src/io/null_io.rs @@ -6,7 +6,7 @@ use shirabe_php_shim::PhpMixed; #[derive(Debug)] pub struct NullIO { - authentications: index::IndexMap<String, indexmap::IndexMap<String, Option<String>>>, + authentications: indexmap::IndexMap<String, indexmap::IndexMap<String, Option<String>>>, } impl IOInterface for NullIO { |
