mirror of
https://github.com/JeroenED/libpairtwo.git
synced 2024-11-22 14:36:57 +01:00
ENHANCEMENT: Class::getBinaryData
methods return null if field is not
This commit is contained in:
parent
16ffacfd2f
commit
21a62ac406
@ -1,6 +1,7 @@
|
|||||||
# CHANGELOG
|
# CHANGELOG
|
||||||
|
|
||||||
## vx.y.z (Release: aa-bbb-cccc)
|
## vx.y.z (Release: aa-bbb-cccc)
|
||||||
|
* 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)
|
||||||
|
@ -464,11 +464,14 @@ 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)
|
||||||
{
|
{
|
||||||
return $this->BinaryData[$Key];
|
if (isset($this->BinaryData[$Key])) {
|
||||||
|
return $this->BinaryData[$Key];
|
||||||
|
}
|
||||||
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -103,11 +103,14 @@ 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)
|
||||||
{
|
{
|
||||||
return $this->BinaryData[$Key];
|
if (isset($this->BinaryData[$Key])) {
|
||||||
|
return $this->BinaryData[$Key];
|
||||||
|
}
|
||||||
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user