mirror of
https://github.com/MarijnDoeve/TijdVoorDeTest.git
synced 2026-03-06 12:44:20 +01:00
- Replaced getters/setters with direct property access across entities and repositories. - Added and configured `martin-georgiev/postgresql-for-doctrine` for PostgreSQL enhancements. - Updated Doctrine configuration with types, mappings, and JSONB query functions. - Removed unused `EliminationService` and related YAML configurations.
76 lines
2.0 KiB
PHP
76 lines
2.0 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\QuestionRepository;
|
|
|
|
#[ORM\Entity(repositoryClass: QuestionRepository::class)]
|
|
class Question
|
|
{
|
|
#[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;
|
|
|
|
#[ORM\Column(type: Types::STRING, length: 255)]
|
|
public string $question;
|
|
|
|
#[ORM\JoinColumn(nullable: false)]
|
|
#[ORM\ManyToOne(inversedBy: 'questions')]
|
|
public Quiz $quiz;
|
|
|
|
#[ORM\Column]
|
|
public bool $enabled = true;
|
|
|
|
/** @var Collection<int, Answer> */
|
|
#[ORM\OneToMany(targetEntity: Answer::class, mappedBy: 'question', cascade: ['persist'], orphanRemoval: true)]
|
|
#[ORM\OrderBy(['ordering' => 'ASC'])]
|
|
public private(set) Collection $answers;
|
|
|
|
public function __construct()
|
|
{
|
|
$this->answers = new ArrayCollection();
|
|
}
|
|
|
|
public function addAnswer(Answer $answer): static
|
|
{
|
|
if (!$this->answers->contains($answer)) {
|
|
$this->answers->add($answer);
|
|
$answer->question = $this;
|
|
}
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function getErrors(): ?string
|
|
{
|
|
if (0 === \count($this->answers)) {
|
|
return 'This question has no answers';
|
|
}
|
|
|
|
$correctAnswers = $this->answers->filter(static fn (Answer $answer): bool => $answer->isRightAnswer)->count();
|
|
|
|
if (0 === $correctAnswers) {
|
|
return 'This question has no correct answers';
|
|
}
|
|
|
|
if ($correctAnswers > 1) {
|
|
return 'This question has multiple correct answers';
|
|
}
|
|
|
|
return null;
|
|
}
|
|
}
|