blob: 84d12a3e2880ed611b58a033f0559e621d601f46 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
<?php
namespace Elements\Model;
use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\DBAL\Schema\Column;
use Doctrine\DBAL\Schema\Table;
use Doctrine\ORM\Mapping\Entity;
use Doctrine\ORM\Mapping\GeneratedValue;
use Doctrine\ORM\Mapping\Id;
use Doctrine\ORM\Mapping\ManyToMany;
use Doctrine\ORM\Mapping\ManyToOne;
use Doctrine\ORM\PersistentCollection;
#[Entity]
#[Table(name: 'categories')]
/**
* @Entity
* @Table(name="categories")
*/
class Category
{
#[Id]
#[Column(type: 'integer')]
#[GeneratedValue]
/**
* @Id
* @Column(type="integer")
* @GeneratedValue
*/
public int $id;
#[Column(type: 'string')]
/**
* @Column(type="string")
*/
public string $name;
#[ManyToMany(targetEntity: Card::class, mappedBy: 'categories')]
/**
* @ManyToMany(targetEntity="Card", mappedBy="categories", cascade={"persist"})
*/
public Collection|ArrayCollection|PersistentCollection $cards;
#[ManyToMany(targetEntity: CardMeta::class, mappedBy: 'categories')]
/**
* @ManyToMany(targetEntity="CardMeta", mappedBy="categories", cascade={"persist"})
*/
public Collection|ArrayCollection|PersistentCollection $meta;
/**
* Category constructor.
*/
public function __construct(string $name)
{
$this->name = $name;
$this->cards = new ArrayCollection();
$this->meta = new ArrayCollection();
}
}
|