JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3RbrstreamContext = $streamContext; } else { $this->streamContext = stream_context_create( [ 'ssl' => [ 'verify_peer' => true, 'verify_depth' => 10, 'cafile' => CaBundle::getSystemCaRootBundlePath(), static::getPeerNameKey() => 'www.github.com', 'disable_compression' => true, ] ] ); } } public function fetch() { $level = error_reporting(0); $result = file_get_contents($this->resourceUri, false, $this->streamContext); error_reporting($level); if ($result === false) { $error = error_get_last(); throw FetcherException::httpError($this->resourceUri, $error['message'] ?? 'Undefined error'); } return $result; } public static function getPeerNameKey(): string { return version_compare(PHP_VERSION, '5.6') === 1 ? 'peer_name' : 'CN_match'; } }