mirror of
https://github.com/pmmp/PocketMine-MP.git
synced 2025-09-06 17:59:48 +00:00
Merge branch 'release/3.3' into release/3.4
This commit is contained in:
@ -134,4 +134,12 @@ abstract class DataPacket extends NetworkBinaryStream{
|
|||||||
|
|
||||||
return $data;
|
return $data;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function __get($name){
|
||||||
|
throw new \Error("Cannot read non-existing field \"$name\"");
|
||||||
|
}
|
||||||
|
|
||||||
|
public function __set($name, $value){
|
||||||
|
throw new \Error("Cannot write non-existing field \"$name\"");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user