deblan.io-murph/src/Entity/ExportQueue.php
Simon Vieille 9dc3272d40
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
[wip] mastodon integration
2023-07-27 18:28:25 +02:00

21 lines
354 B
PHP

<?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;
}
}