aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/src/util/svn.rs
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2026-05-17 14:33:13 +0900
committernsfisis <nsfisis@gmail.com>2026-05-17 14:38:16 +0900
commit3e21569688cf0c8a1918c73ff96cb1b3aeffe0b3 (patch)
tree712ae7832124da20739f5b389cebe4f44abd7225 /crates/shirabe/src/util/svn.rs
parentac59538140a93d9a023da2115148bc9779223978 (diff)
downloadphp-shirabe-3e21569688cf0c8a1918c73ff96cb1b3aeffe0b3.tar.gz
php-shirabe-3e21569688cf0c8a1918c73ff96cb1b3aeffe0b3.tar.zst
php-shirabe-3e21569688cf0c8a1918c73ff96cb1b3aeffe0b3.zip
fix(compile): extract constants from traits to make them dyn-compatible
Diffstat (limited to 'crates/shirabe/src/util/svn.rs')
-rw-r--r--crates/shirabe/src/util/svn.rs5
1 files changed, 3 insertions, 2 deletions
diff --git a/crates/shirabe/src/util/svn.rs b/crates/shirabe/src/util/svn.rs
index f1a900c..b312ec3 100644
--- a/crates/shirabe/src/util/svn.rs
+++ b/crates/shirabe/src/util/svn.rs
@@ -1,5 +1,6 @@
//! ref: composer/src/Composer/Util/Svn.php
+use crate::io::io_interface;
use std::sync::Mutex;
use anyhow::Result;
@@ -142,7 +143,7 @@ impl Svn {
// PHP: $output .= $buffer;
output.get_or_insert_with(String::new).push_str(buffer);
if verbose {
- // self.io.write_error(PhpMixed::String(buffer.to_string()), false, IOInterface::NORMAL);
+ // self.io.write_error(PhpMixed::String(buffer.to_string()), false, io_interface::NORMAL);
}
None
};
@@ -216,7 +217,7 @@ impl Svn {
self.url,
)),
true,
- IOInterface::NORMAL,
+ io_interface::NORMAL,
);
self.has_auth = Some(true);