Apply typehints to pocketmine\network\mcpe\protocol namespace

this is pulled from network-nuke in order to reduce the size of the diff.
This commit is contained in:
Dylan K. Taylor
2018-07-05 13:19:15 +01:00
parent fbd4f4a849
commit 2bba3a0805
116 changed files with 255 additions and 255 deletions

View File

@ -76,7 +76,7 @@ class LoginPacket extends DataPacket{
return $this->protocol !== null and $this->protocol !== ProtocolInfo::CURRENT_PROTOCOL;
}
protected function decodePayload(){
protected function decodePayload() : void{
$this->protocol = $this->getInt();
if($this->protocol !== ProtocolInfo::CURRENT_PROTOCOL){
@ -133,7 +133,7 @@ class LoginPacket extends DataPacket{
$this->locale = $this->clientData["LanguageCode"] ?? null;
}
protected function encodePayload(){
protected function encodePayload() : void{
//TODO
}