pocketmine root: sweep missing return type information

This commit is contained in:
Dylan K. Taylor
2020-01-19 19:40:01 +00:00
parent e8a5fa8a37
commit ea935a1af5
8 changed files with 67 additions and 2 deletions

View File

@ -137,6 +137,9 @@ class CrashDump{
return $this->path;
}
/**
* @return string
*/
public function getEncodedData(){
return $this->encodedData;
}
@ -345,6 +348,8 @@ class CrashDump{
/**
* @param string $line
*
* @return void
*/
public function addLine($line = ""){
fwrite($this->fp, $line . PHP_EOL);
@ -352,6 +357,8 @@ class CrashDump{
/**
* @param string $str
*
* @return void
*/
public function add($str){
fwrite($this->fp, $str);