PHPUnit version bump and removed ELO

This commit is contained in:
Alex Wulf
2022-07-05 15:42:21 +02:00
parent 97609a3eac
commit afce4e56ca
14 changed files with 1285 additions and 718 deletions

View File

@ -57,10 +57,6 @@ class Player implements ISupportPartialPlay, ISupportPartialUpdate
public function __toString()
{
if ($this->_Id != null) {
return (string)$this->_Id;
}
return parent::__toString();
return (string)$this->_Id;
}
}