Correct Spacing

This commit is contained in:
oleibman
2024-09-24 17:20:43 -07:00
parent 1d73598d67
commit f7fcb4bb1a
+1 -1
View File
@@ -112,7 +112,7 @@ class Drawing extends BaseDrawing
$ctx = null;
// https://github.com/php/php-src/issues/16023
if (str_starts_with($path, 'https:')) {
$ctx = stream_context_create(['ssl' => ['crypto_method'=>STREAM_CRYPTO_METHOD_TLSv1_3_CLIENT]]);
$ctx = stream_context_create(['ssl' => ['crypto_method' => STREAM_CRYPTO_METHOD_TLSv1_3_CLIENT]]);
}
$imageContents = @file_get_contents($path, false, $ctx);
if ($imageContents !== false) {