mirror of
https://github.com/JeroenED/libpairtwo.git
synced 2024-11-22 06:26:57 +01:00
Added binaryData
This commit is contained in:
parent
d370aad190
commit
38e67a4261
@ -102,6 +102,9 @@ class Tournament
|
|||||||
/** @var string */
|
/** @var string */
|
||||||
private $PriorityId = 'Nation';
|
private $PriorityId = 'Nation';
|
||||||
|
|
||||||
|
/** @var bool|DateTime|int|string[] */
|
||||||
|
private $binaryData = [];
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets a player by its ID
|
* Gets a player by its ID
|
||||||
*
|
*
|
||||||
@ -1313,4 +1316,28 @@ class Tournament
|
|||||||
$this->PriorityId = $PriorityId;
|
$this->PriorityId = $PriorityId;
|
||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns binary data that was read out the pairing file but was not needed immediately
|
||||||
|
*
|
||||||
|
* @param string $Key
|
||||||
|
* @return bool|DateTime|int|string
|
||||||
|
*/
|
||||||
|
public function getBinaryData(string $Key)
|
||||||
|
{
|
||||||
|
return $this->BinaryData[$Key];
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sets binary data that is read out the pairing file but is not needed immediately
|
||||||
|
*
|
||||||
|
* @param string $Key
|
||||||
|
* @param bool|int|DateTime|string $Value
|
||||||
|
* @return Pairtwo6
|
||||||
|
*/
|
||||||
|
public function setBinaryData(string $Key, $Value): Tournament
|
||||||
|
{
|
||||||
|
$this->BinaryData[$Key] = $Value;
|
||||||
|
return $this;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user