multiple invoices with one payment SDEV-421

This commit is contained in:
94924240Jeko!
2022-12-20 21:14:09 +03:00
commit c73e86e2cf
1700 changed files with 111993 additions and 0 deletions
@@ -0,0 +1,38 @@
<?php
namespace App\Classes\Modules\Remarks\DataTransferObjects;
use App\Classes\General\Interfaces\DataTransferObject;
class RemarkObject implements DataTransferObject
{
/** @var int */
private $commenterID;
/** @var string*/
private $content;
public function __construct(string $content, int $commenterID)
{
$this->commenterID = $commenterID;
$this->content = $content;
}
/**
* @return int
*/
public function getCommenterId(): string
{
return $this->commenterID;
}
/**
* @return string
*/
public function getContent(): ?string
{
return $this->content;
}
}