Network: added missing return type information for getUpload() and getDownload()

This commit is contained in:
Dylan K. Taylor 2020-01-18 19:33:27 +00:00
parent 97b6183404
commit ca86ec2ec2

View File

@ -70,10 +70,16 @@ class Network{
$this->download += $download; $this->download += $download;
} }
/**
* @return float
*/
public function getUpload(){ public function getUpload(){
return $this->upload; return $this->upload;
} }
/**
* @return float
*/
public function getDownload(){ public function getDownload(){
return $this->download; return $this->download;
} }