aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/src/command
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2026-06-21 20:27:13 +0900
committernsfisis <nsfisis@gmail.com>2026-06-21 20:27:13 +0900
commite283399a0304846bbff8484f455c50ecb3de7048 (patch)
tree0035845f7d362108b51b9358c8a02465bbdcf7b2 /crates/shirabe/src/command
parente4402e52c08b8b28497151302c994793ce885cc3 (diff)
downloadphp-shirabe-e283399a0304846bbff8484f455c50ecb3de7048.tar.gz
php-shirabe-e283399a0304846bbff8484f455c50ecb3de7048.tar.zst
php-shirabe-e283399a0304846bbff8484f455c50ecb3de7048.zip
refactor(php-shim): drop reset()/reset_first()/end_arr() array helpers
These slice/map wrappers mirrored PHP's internal array pointer and have no clean Rust equivalent. Remove them and replace the lone caller with direct first-element access; the rest were unused imports. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Diffstat (limited to 'crates/shirabe/src/command')
-rw-r--r--crates/shirabe/src/command/diagnose_command.rs5
1 files changed, 2 insertions, 3 deletions
diff --git a/crates/shirabe/src/command/diagnose_command.rs b/crates/shirabe/src/command/diagnose_command.rs
index 1210956..aff63bd 100644
--- a/crates/shirabe/src/command/diagnose_command.rs
+++ b/crates/shirabe/src/command/diagnose_command.rs
@@ -15,9 +15,8 @@ use shirabe_php_shim::{
PHP_VERSION, PHP_VERSION_ID, PHP_WINDOWS_VERSION_BUILD, PhpMixed, RuntimeException, count,
curl_version, defined, disk_free_space, extension_loaded, file_exists, filter_var_boolean,
function_exists, get_class, get_class_err, hash, implode, ini_get, ioncube_loader_iversion,
- ioncube_loader_version, is_array, is_string, ob_get_clean, ob_start, phpinfo, reset, rtrim,
- sprintf, str_contains, str_replace, str_starts_with, strpos, strstr, strtolower, trim,
- version_compare,
+ ioncube_loader_version, is_array, is_string, ob_get_clean, ob_start, phpinfo, rtrim, sprintf,
+ str_contains, str_replace, str_starts_with, strpos, strstr, strtolower, trim, version_compare,
};
use std::cell::RefCell;
use std::rc::Rc;