aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe-php-shim/src
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2026-08-02 06:04:21 +0900
committernsfisis <nsfisis@gmail.com>2026-08-02 06:04:21 +0900
commit4a220b09967f84f830db029501dbef6efc4ee9f9 (patch)
tree4d25f93d5f832dd7cc8474513f8f216a1353feb5 /crates/shirabe-php-shim/src
parent4fa973840f0a0e2cbb16f5e3341c0625793af2ed (diff)
downloadphp-shirabe-4a220b09967f84f830db029501dbef6efc4ee9f9.tar.gz
php-shirabe-4a220b09967f84f830db029501dbef6efc4ee9f9.tar.zst
php-shirabe-4a220b09967f84f830db029501dbef6efc4ee9f9.zip
refactor(symfony-console): drop unused Cursor methods
Remove the eight Cursor methods that have no callers, and the sscanf shim whose only caller was Cursor::get_current_position. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Diffstat (limited to 'crates/shirabe-php-shim/src')
-rw-r--r--crates/shirabe-php-shim/src/string.rs6
1 files changed, 0 insertions, 6 deletions
diff --git a/crates/shirabe-php-shim/src/string.rs b/crates/shirabe-php-shim/src/string.rs
index aad5c884..28acb3bb 100644
--- a/crates/shirabe-php-shim/src/string.rs
+++ b/crates/shirabe-php-shim/src/string.rs
@@ -598,12 +598,6 @@ fn hex_digit_value(b: u8) -> Option<u8> {
}
}
-pub fn sscanf(_subject: &str, _format: &str, _a: &mut i64, _b: &mut i64) -> i64 {
- // TODO(phase-d): a general sscanf format-string parser is not ported; this specialized two-int
- // overload has no current callers.
- todo!()
-}
-
pub fn sprintf(_format: &str, _args: &[PhpMixed]) -> String {
let fb = _format.as_bytes();
let mut out = String::new();