export user-list reports in excel (#3154)
This commit is contained in:
@@ -15,6 +15,7 @@ abstract class AbstractUserList
|
||||
* @var \DateTime
|
||||
*/
|
||||
private $date;
|
||||
private $decimal = false;
|
||||
|
||||
public function getDate(): ?\DateTime
|
||||
{
|
||||
@@ -25,4 +26,14 @@ abstract class AbstractUserList
|
||||
{
|
||||
$this->date = $date;
|
||||
}
|
||||
|
||||
public function isDecimal(): bool
|
||||
{
|
||||
return $this->decimal;
|
||||
}
|
||||
|
||||
public function setDecimal(bool $decimal): void
|
||||
{
|
||||
$this->decimal = $decimal;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user