Apply fixes from StyleCI

This commit is contained in:
Daniil Gentili 2017-07-23 15:44:47 +00:00 committed by StyleCI Bot
parent 9b58979ed0
commit 2d6f6369dd
2 changed files with 15 additions and 9 deletions

View File

@ -353,8 +353,11 @@ trait Files
return true; return true;
} }
private $cdn_hashes = []; private $cdn_hashes = [];
private function add_cdn_hashes($file, $hashes) {
private function add_cdn_hashes($file, $hashes)
{
if (!isset($this->cdn_hashes[$file])) { if (!isset($this->cdn_hashes[$file])) {
$this->cdn_hashes = []; $this->cdn_hashes = [];
} }
@ -362,7 +365,9 @@ trait Files
$this->cdn_hashes[$file][$hash['offset']] = ['limit' => $hash['limit'], 'hash' => $hash['hash']]; $this->cdn_hashes[$file][$hash['offset']] = ['limit' => $hash['limit'], 'hash' => $hash['hash']];
} }
} }
private function check_cdn_hashes($file, $offset, $data, &$datacenter) {
private function check_cdn_hashes($file, $offset, $data, &$datacenter)
{
if (!isset($this->cdn_hashes[$file][$offset])) { if (!isset($this->cdn_hashes[$file][$offset])) {
$this->add_cdn_hashes($this->method_call('upload.getCdnFileHashes', ['file_token' => $file, 'offset' => $offset], ['datacenter' => &$datacenter])); $this->add_cdn_hashes($this->method_call('upload.getCdnFileHashes', ['file_token' => $file, 'offset' => $offset], ['datacenter' => &$datacenter]));
} }
@ -373,7 +378,8 @@ trait Files
throw new \danog\MadelineProto\SecurityException('CDN hashe mismatch for offset '.$offset); throw new \danog\MadelineProto\SecurityException('CDN hashe mismatch for offset '.$offset);
} }
} }
private function clear_cdn_hashes($file) {
private function clear_cdn_hashes($file)
{
} }
} }