deblan.io-murph/src/Entity/ExportQueue.php

21 lines
354 B
PHP
Raw Normal View History

2023-07-27 18:28:25 +02:00
<?php
namespace App\Entity;
use App\Repository\ExportQueueRepository;
use Doctrine\ORM\Mapping as ORM;
#[ORM\Entity(repositoryClass: ExportQueueRepository::class)]
class ExportQueue
{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column(type: 'integer')]
private $id;
public function getId(): ?int
{
return $this->id;
}
}