aboutsummaryrefslogtreecommitdiffhomepage
path: root/crates/shirabe/src/util/http
diff options
context:
space:
mode:
authornsfisis <nsfisis@gmail.com>2026-06-24 05:14:37 +0900
committernsfisis <nsfisis@gmail.com>2026-06-24 05:19:49 +0900
commit6dcc2125974e350d1844c5ce1bb3562e224f3435 (patch)
tree7287119a8cd6aad599acb41e796095c3e204c35f /crates/shirabe/src/util/http
parenta8623a5e867825400073d2597dfb3118d6624ef7 (diff)
downloadphp-shirabe-6dcc2125974e350d1844c5ce1bb3562e224f3435.tar.gz
php-shirabe-6dcc2125974e350d1844c5ce1bb3562e224f3435.tar.zst
php-shirabe-6dcc2125974e350d1844c5ce1bb3562e224f3435.zip
refactor(php-shim): remove is_resource/is_resource_value
Diffstat (limited to 'crates/shirabe/src/util/http')
-rw-r--r--crates/shirabe/src/util/http/curl_downloader.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/crates/shirabe/src/util/http/curl_downloader.rs b/crates/shirabe/src/util/http/curl_downloader.rs
index 4b8348f..1a5c7b3 100644
--- a/crates/shirabe/src/util/http/curl_downloader.rs
+++ b/crates/shirabe/src/util/http/curl_downloader.rs
@@ -19,9 +19,9 @@ use shirabe_php_shim::{
curl_init, curl_multi_add_handle, curl_multi_exec, curl_multi_info_read, curl_multi_init,
curl_multi_select, curl_multi_setopt, curl_setopt, curl_setopt_array, curl_share_init,
curl_share_setopt, curl_strerror, curl_version, defined, explode, fclose, fopen,
- function_exists, implode, in_array, ini_get, is_resource, json_decode, parse_url, preg_quote,
- rename, rewind, rtrim, sprintf, str_contains, stream_get_contents,
- stream_get_contents_with_max, stripos, strpos, substr, unlink_silent, usleep, var_export,
+ function_exists, implode, in_array, ini_get, json_decode, parse_url, preg_quote, rename,
+ rewind, rtrim, sprintf, str_contains, stream_get_contents, stream_get_contents_with_max,
+ stripos, strpos, substr, unlink_silent, usleep, var_export,
};
use crate::config::Config;