From ced1f9aa91ee36857fec9664c9ccd86ba2310821 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Tue, 18 Aug 2026 04:47:02 +0900 Subject: refactor(function-exists): drop checks for always-present capabilities function_exists() returns false in PHP when a function is blocked by disable_functions, when its extension is not compiled in, or when the PHP version predates it. None of those apply to a native binary. --- crates/shirabe/src/util/stream_context_factory.rs | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) (limited to 'crates/shirabe/src/util/stream_context_factory.rs') diff --git a/crates/shirabe/src/util/stream_context_factory.rs b/crates/shirabe/src/util/stream_context_factory.rs index dea964ec..bce35832 100644 --- a/crates/shirabe/src/util/stream_context_factory.rs +++ b/crates/shirabe/src/util/stream_context_factory.rs @@ -9,8 +9,8 @@ use crate::util::http::ProxyManager; use indexmap::IndexMap; use shirabe_ca_bundle::CaBundle; use shirabe_php_shim::{ - PhpMixed, array_replace_recursive, extension_loaded, function_exists, php_uname, - stream_context_create, stripos, uasort, + PhpMixed, array_replace_recursive, extension_loaded, php_uname, stream_context_create, stripos, + uasort, }; pub struct StreamContextFactory; @@ -180,16 +180,8 @@ impl StreamContextFactory { let user_agent = format!( "User-Agent: Composer/{} ({os}; {release}; {php_version}; {http_version}{platform}{ci})", composer::get_version(), - os = if function_exists("php_uname") { - php_uname("s") - } else { - "Unknown".to_string() - }, - release = if function_exists("php_uname") { - php_uname("r") - } else { - "Unknown".to_string() - }, + os = php_uname("s"), + release = php_uname("r"), php_version = php_version, http_version = http_version, platform = platform_php_version -- cgit v1.3.1-4-g156e