diff options
| author | nsfisis <nsfisis@gmail.com> | 2026-08-11 23:28:40 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2026-08-11 23:28:40 +0900 |
| commit | 38621c67917fd015f884ea04517791cdc5058c6d (patch) | |
| tree | 03f466e2db22a3bc45e20e4f9694eb371a59b0e1 /crates/shirabe/src/command/diagnose_command.rs | |
| parent | 73ab00d3108933c952844b3820f44230c8203807 (diff) | |
| download | php-shirabe-38621c67917fd015f884ea04517791cdc5058c6d.tar.gz php-shirabe-38621c67917fd015f884ea04517791cdc5058c6d.tar.zst php-shirabe-38621c67917fd015f884ea04517791cdc5058c6d.zip | |
chore(php-shim): drop the substring predicate ports
str_contains(), str_starts_with() and str_ends_with() were thin wrappers
over the str methods of the same semantics. Call sites now use
contains()/starts_with()/ends_with() directly.
Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
Diffstat (limited to 'crates/shirabe/src/command/diagnose_command.rs')
| -rw-r--r-- | crates/shirabe/src/command/diagnose_command.rs | 20 |
1 files changed, 11 insertions, 9 deletions
diff --git a/crates/shirabe/src/command/diagnose_command.rs b/crates/shirabe/src/command/diagnose_command.rs index ca71c0e5..dc5d7399 100644 --- a/crates/shirabe/src/command/diagnose_command.rs +++ b/crates/shirabe/src/command/diagnose_command.rs @@ -38,8 +38,8 @@ use shirabe_php_shim::Catch as _; use shirabe_php_shim::{ AnyThrowable, CmpOp, InvalidArgumentException, PHP_EOL, PhpClass as _, PhpMixed, disk_free_space, file_exists, filter_var_boolean, hash, impl_php_class, implode, is_array, - is_string, php_regex, rtrim, str_contains, str_replace, str_starts_with, strpos, strstr, - strstr3, strtolower, trim, version_compare, + is_string, php_regex, rtrim, str_replace, strpos, strstr, strstr3, strtolower, trim, + version_compare, }; use shirabe_symfony_console::command::Command; use shirabe_symfony_console::input::InputInterface; @@ -234,8 +234,7 @@ impl DiagnoseCommand { let mut result_list: Vec<PhpMixed> = vec![]; let mut tls_warning: Option<String> = None; - if str_starts_with(url, "https://") - && config.borrow().get("disable-tls").as_bool() == Some(true) + if url.starts_with("https://") && config.borrow().get("disable-tls").as_bool() == Some(true) { tls_warning = Some("<warning>Composer is configured to disable SSL/TLS protection. This will leave remote HTTPS requests vulnerable to Man-In-The-Middle attacks.</warning>".to_string()); } @@ -875,11 +874,11 @@ impl DiagnoseCommand { .unwrap_or_default(); let configure = configure.as_str(); - if str_contains(configure, "--enable-sigchild") { + if configure.contains("--enable-sigchild") { warnings.insert("sigchild".to_string(), PhpMixed::Bool(true)); } - if str_contains(configure, "--with-curlwrappers") { + if configure.contains("--with-curlwrappers") { warnings.insert("curlwrappers".to_string(), PhpMixed::Bool(true)); } } @@ -1228,7 +1227,10 @@ impl Command for DiagnoseCommand { .unwrap(); let mut php_version = php_pkg.get_pretty_version(); if let Some(cp) = php_pkg.as_complete() - && str_contains(&cp.get_description().unwrap_or_default(), "overridden") + && cp + .get_description() + .unwrap_or_default() + .contains("overridden") { php_version = format!( "{} - {}", @@ -1361,10 +1363,10 @@ impl Command for DiagnoseCommand { // We surface the same internal call by directly invoking the equivalent method. // TODO(plugin): support reflection-based access if plugin code requires it. let url = composer_repo.get_packages_json_url(); - if !str_starts_with(&url, "http") { + if !url.starts_with("http") { continue; } - if str_starts_with(&url, "https://repo.packagist.org") { + if url.starts_with("https://repo.packagist.org") { continue; } io.write_no_newline(&format!( |
