Merge branch 'develop' into task/reader/swar

This commit is contained in:
Jeroen De Meerleer 2019-09-25 14:45:03 +02:00
commit c61876c87e
Signed by: JeroenED
GPG Key ID: 28CCCB8F62BFADD6
3 changed files with 12 additions and 5 deletions

View File

@ -2,6 +2,7 @@
## vx.y.z (Release: aa-bbb-cccc) ## vx.y.z (Release: aa-bbb-cccc)
* NEW READER: `swar-4` for reading out files created with Swar version 4. * NEW READER: `swar-4` for reading out files created with Swar version 4.
* ENHANCEMENT: `Class::getBinaryData` methods return null if field is non-existent
* BUGFIX: `Player:GetId` returns elo instead of id * BUGFIX: `Player:GetId` returns elo instead of id
## v1.1.2 (Release: 21-jun-2019) ## v1.1.2 (Release: 21-jun-2019)

View File

@ -464,12 +464,15 @@ class Player
* Returns binary data that was read out the pairtwo file but was not needed immediately * Returns binary data that was read out the pairtwo file but was not needed immediately
* *
* @param string $Key * @param string $Key
* @return bool|DateTime|int|string * @return bool|DateTime|int|string|null
*/ */
public function getBinaryData(string $Key) public function getBinaryData(string $Key)
{ {
if (isset($this->BinaryData[$Key])) {
return $this->BinaryData[$Key]; return $this->BinaryData[$Key];
} }
return null;
}
/** /**
* Sets binary data that is read out the pairtwo file but is not needed immediately * Sets binary data that is read out the pairtwo file but is not needed immediately

View File

@ -103,12 +103,15 @@ class Pairtwo6 implements ReaderInterface
* Returns binary data that was read out the pairtwo file but was not needed immediately * Returns binary data that was read out the pairtwo file but was not needed immediately
* *
* @param string $Key * @param string $Key
* @return bool|DateTime|int|string * @return bool|DateTime|int|string|null
*/ */
public function getBinaryData(string $Key) public function getBinaryData(string $Key)
{ {
if (isset($this->BinaryData[$Key])) {
return $this->BinaryData[$Key]; return $this->BinaryData[$Key];
} }
return null;
}
/** /**