We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d332cc1 commit d5a2fc1Copy full SHA for d5a2fc1
src/RemoteRef/BasicFetcher.php
@@ -10,12 +10,12 @@ public function getSchemaData($url)
10
{
11
$arrContextOptions = [
12
"ssl" => [
13
- "verify_peer" => FALSE,
14
- "verify_peer_name" => FALSE,
+ "verify_peer" => false,
+ "verify_peer_name" => false,
15
],
16
];
17
18
- if ($data = file_get_contents(rawurldecode($url), FALSE, stream_context_create($arrContextOptions))) {
+ if ($data = file_get_contents(rawurldecode($url), false, stream_context_create($arrContextOptions))) {
19
return json_decode($data);
20
}
21
return false;
0 commit comments