Initial commit

This commit is contained in:
2022-03-25 16:42:41 +01:00
commit 34685838bc
235 changed files with 12766 additions and 0 deletions
+76
View File
@@ -0,0 +1,76 @@
<?php
declare(strict_types=1);
namespace App\Logic\Crypto;
class MainObject
{
private \DateTime $dateTime;
private string $desc;
private float $value;
private string $currency;
/**
* @return \DateTime
*/
public function getDateTime(): \DateTime
{
return $this->dateTime;
}
/**
* @param \DateTime $dateTime
*/
public function setDateTime(\DateTime $dateTime): void
{
$this->dateTime = $dateTime;
}
/**
* @return string
*/
public function getDesc(): string
{
return $this->desc;
}
/**
* @param string $desc
*/
public function setDesc(string $desc): void
{
$this->desc = $desc;
}
/**
* @return float
*/
public function getValue(): float
{
return $this->value;
}
/**
* @param float $value
*/
public function setValue(float $value): void
{
$this->value = $value;
}
/**
* @return string
*/
public function getCurrency(): string
{
return $this->currency;
}
/**
* @param string $currency
*/
public function setCurrency(string $currency): void
{
$this->currency = $currency;
}
}