Skip to content

Commit 35df88a

Browse files
committed
Remove unnecessary function call
1 parent 8f2b878 commit 35df88a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Curl/Curl.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1235,7 +1235,7 @@ public static function array_flatten_multidim($array, $prefix = false)
12351235
$return[$key] = $value;
12361236
}
12371237
} else {
1238-
if (class_exists('CURLFile') && $value instanceof \CURLFile) {
1238+
if ($value instanceof \CURLFile) {
12391239
$return[$key] = $value;
12401240
} else {
12411241
$return = array_merge(

0 commit comments

Comments
 (0)