mirror of
https://github.com/maelgangloff/domain-watchdog.git
synced 2025-12-29 16:15:04 +00:00
fix: make migration
This commit is contained in:
@@ -10,7 +10,7 @@ use Doctrine\Migrations\AbstractMigration;
|
|||||||
/**
|
/**
|
||||||
* Auto-generated Migration: Please modify to your needs!
|
* Auto-generated Migration: Please modify to your needs!
|
||||||
*/
|
*/
|
||||||
final class Version20240728213336 extends AbstractMigration
|
final class Version20240729093649 extends AbstractMigration
|
||||||
{
|
{
|
||||||
public function getDescription(): string
|
public function getDescription(): string
|
||||||
{
|
{
|
||||||
@@ -4,6 +4,8 @@ namespace App\Entity;
|
|||||||
|
|
||||||
use App\Config\ConnectorProvider;
|
use App\Config\ConnectorProvider;
|
||||||
use App\Repository\ConnectorRepository;
|
use App\Repository\ConnectorRepository;
|
||||||
|
use Doctrine\Common\Collections\ArrayCollection;
|
||||||
|
use Doctrine\Common\Collections\Collection;
|
||||||
use Doctrine\ORM\Mapping as ORM;
|
use Doctrine\ORM\Mapping as ORM;
|
||||||
use Doctrine\ORM\Mapping\DiscriminatorColumn;
|
use Doctrine\ORM\Mapping\DiscriminatorColumn;
|
||||||
use Doctrine\ORM\Mapping\DiscriminatorMap;
|
use Doctrine\ORM\Mapping\DiscriminatorMap;
|
||||||
@@ -29,6 +31,17 @@ class Connector
|
|||||||
#[ORM\Column]
|
#[ORM\Column]
|
||||||
private array $authData = [];
|
private array $authData = [];
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @var Collection<int, WatchListTrigger>
|
||||||
|
*/
|
||||||
|
#[ORM\OneToMany(targetEntity: WatchListTrigger::class, mappedBy: 'connector')]
|
||||||
|
private Collection $watchListTriggers;
|
||||||
|
|
||||||
|
public function __construct()
|
||||||
|
{
|
||||||
|
$this->watchListTriggers = new ArrayCollection();
|
||||||
|
}
|
||||||
|
|
||||||
public function getId(): ?int
|
public function getId(): ?int
|
||||||
{
|
{
|
||||||
return $this->id;
|
return $this->id;
|
||||||
@@ -70,4 +83,34 @@ class Connector
|
|||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @return Collection<int, WatchListTrigger>
|
||||||
|
*/
|
||||||
|
public function getWatchListTriggers(): Collection
|
||||||
|
{
|
||||||
|
return $this->watchListTriggers;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function addWatchListTrigger(WatchListTrigger $watchListTrigger): static
|
||||||
|
{
|
||||||
|
if (!$this->watchListTriggers->contains($watchListTrigger)) {
|
||||||
|
$this->watchListTriggers->add($watchListTrigger);
|
||||||
|
$watchListTrigger->setConnector($this);
|
||||||
|
}
|
||||||
|
|
||||||
|
return $this;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function removeWatchListTrigger(WatchListTrigger $watchListTrigger): static
|
||||||
|
{
|
||||||
|
if ($this->watchListTriggers->removeElement($watchListTrigger)) {
|
||||||
|
// set the owning side to null (unless already changed)
|
||||||
|
if ($watchListTrigger->getConnector() === $this) {
|
||||||
|
$watchListTrigger->setConnector(null);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return $this;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -25,6 +25,9 @@ class WatchListTrigger
|
|||||||
#[Groups(['watchlist:list', 'watchlist:item', 'watchlist:create', 'watchlist:update'])]
|
#[Groups(['watchlist:list', 'watchlist:item', 'watchlist:create', 'watchlist:update'])]
|
||||||
private ?TriggerAction $action = null;
|
private ?TriggerAction $action = null;
|
||||||
|
|
||||||
|
#[ORM\ManyToOne(inversedBy: 'watchListTriggers')]
|
||||||
|
private ?Connector $connector = null;
|
||||||
|
|
||||||
public function getEvent(): ?string
|
public function getEvent(): ?string
|
||||||
{
|
{
|
||||||
return $this->event;
|
return $this->event;
|
||||||
@@ -60,4 +63,16 @@ class WatchListTrigger
|
|||||||
|
|
||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function getConnector(): ?Connector
|
||||||
|
{
|
||||||
|
return $this->connector;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function setConnector(?Connector $connector): static
|
||||||
|
{
|
||||||
|
$this->connector = $connector;
|
||||||
|
|
||||||
|
return $this;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user