diff options
| author | nsfisis <nsfisis@gmail.com> | 2026-06-21 20:27:13 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2026-06-21 20:27:13 +0900 |
| commit | e283399a0304846bbff8484f455c50ecb3de7048 (patch) | |
| tree | 0035845f7d362108b51b9358c8a02465bbdcf7b2 /crates/shirabe/src/config.rs | |
| parent | e4402e52c08b8b28497151302c994793ce885cc3 (diff) | |
| download | php-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/config.rs')
| -rw-r--r-- | crates/shirabe/src/config.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/crates/shirabe/src/config.rs b/crates/shirabe/src/config.rs index dfc99a6..68cad87 100644 --- a/crates/shirabe/src/config.rs +++ b/crates/shirabe/src/config.rs @@ -13,8 +13,8 @@ use shirabe_external_packages::composer::pcre::{CaptureKey, Preg}; use shirabe_php_shim::{ E_USER_DEPRECATED, PHP_URL_HOST, PHP_URL_SCHEME, PhpMixed, RuntimeException, array_key_exists, array_merge, array_reverse, array_search_mixed, array_unique, empty, filter_var_url, implode, - in_array, is_array, is_int, is_string, parse_url, php_to_string, reset, rtrim, strtolower, - strtoupper, strtr, substr, trigger_error, + in_array, is_array, is_int, is_string, parse_url, php_to_string, rtrim, strtolower, strtoupper, + strtr, substr, trigger_error, }; use std::cell::RefCell; @@ -866,7 +866,7 @@ impl Config { } } } - let first = reset(&protos); + let first = protos.first().cloned(); if first.as_deref() == Some("http") { return Err(RuntimeException { message: "The http protocol for github is not available anymore, update your config's github-protocols to use \"https\", \"git\" or \"ssh\"".to_string(), |
