mirror of
https://github.com/MarijnDoeve/TijdVoorDeTest.git
synced 2026-07-05 23:20:18 +02:00
18a6090366
* Add Penalty Seconds on tests * Refactors and start of candidate answer relation * Add breadcrumbs and UI consistency updates across backoffice templates * Add breadcrumbs and UI consistency updates across backoffice templates * Add Dutch translations for email verification and security messages * Rector * Refactor for code consistency and type safety assertions across repositories and entities * Refactor candidate-related logic to optimize queries, improve template separation, and add "Answer Mapping" functionality. * Cleanup * Update Symfony * Add coderabbit config * Fixes from coderabbit
66 lines
1.8 KiB
PHP
66 lines
1.8 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Tvdt\Entity;
|
|
|
|
use Doctrine\Common\Collections\ArrayCollection;
|
|
use Doctrine\Common\Collections\Collection;
|
|
use Doctrine\DBAL\Types\Types;
|
|
use Doctrine\ORM\Mapping as ORM;
|
|
use Symfony\Bridge\Doctrine\Types\UuidType;
|
|
use Symfony\Component\Uid\Uuid;
|
|
use Tvdt\Repository\AnswerRepository;
|
|
|
|
#[ORM\Entity(repositoryClass: AnswerRepository::class)]
|
|
class Answer implements \Stringable
|
|
{
|
|
#[ORM\Column(type: UuidType::NAME)]
|
|
#[ORM\CustomIdGenerator(class: 'doctrine.uuid_generator')]
|
|
#[ORM\GeneratedValue(strategy: 'CUSTOM')]
|
|
#[ORM\Id]
|
|
public private(set) Uuid $id;
|
|
|
|
#[ORM\Column(type: Types::SMALLINT, options: ['default' => 0])]
|
|
public int $ordering = 0;
|
|
|
|
#[ORM\JoinColumn(nullable: false)]
|
|
#[ORM\ManyToOne(inversedBy: 'answers')]
|
|
public Question $question;
|
|
|
|
/** @var Collection<int, Candidate> */
|
|
#[ORM\ManyToMany(targetEntity: Candidate::class, inversedBy: 'answersOnCandidate')]
|
|
public private(set) Collection $candidates;
|
|
|
|
/** @var Collection<int, GivenAnswer> */
|
|
#[ORM\OneToMany(targetEntity: GivenAnswer::class, mappedBy: 'answer', orphanRemoval: true)]
|
|
public private(set) Collection $givenAnswers;
|
|
|
|
public function __construct(
|
|
#[ORM\Column(length: 255)]
|
|
public string $text,
|
|
#[ORM\Column]
|
|
public bool $isRightAnswer = false,
|
|
) {
|
|
$this->candidates = new ArrayCollection();
|
|
$this->givenAnswers = new ArrayCollection();
|
|
}
|
|
|
|
public function addCandidate(Candidate $candidate): void
|
|
{
|
|
if (!$this->candidates->contains($candidate)) {
|
|
$this->candidates->add($candidate);
|
|
}
|
|
}
|
|
|
|
public function removeCandidate(Candidate $candidate): void
|
|
{
|
|
$this->candidates->removeElement($candidate);
|
|
}
|
|
|
|
public function __toString(): string
|
|
{
|
|
return $this->text;
|
|
}
|
|
}
|