WIP: Refactor application rejecting process

This commit is contained in:
Björn Fromme
2023-10-18 19:04:06 +02:00
parent 40d4edbf96
commit d42da03a8f
5 changed files with 75 additions and 2 deletions
+33
View File
@@ -0,0 +1,33 @@
<?php
namespace App\Model;
use App\Entity\Application;
class ApplicationCheckDto
{
private Application $application;
private ?string $comment = null;
public function __construct(Application $application)
{
$this->application = $application;
}
public function getApplication(): Application
{
return $this->application;
}
public function getComment(): ?string
{
return $this->comment;
}
public function setComment(?string $comment): static
{
$this->comment = $comment;
return $this;
}
}