1 | <?php |
||
13 | class ScopeEntity implements ScopeEntityInterface |
||
14 | { |
||
15 | /** |
||
16 | * @ORM\Id() |
||
17 | * @ORM\GeneratedValue() |
||
18 | * @ORM\Column(type="integer") |
||
19 | * @var int |
||
20 | */ |
||
21 | private $id; |
||
22 | |||
23 | /** |
||
24 | * @ORM\Column(type="string", length=80, unique=true) |
||
25 | * @var string |
||
26 | */ |
||
27 | private $identifier; |
||
28 | |||
29 | /** |
||
30 | * @return int|null |
||
31 | */ |
||
32 | public function getId() |
||
36 | |||
37 | public function __clone() |
||
41 | |||
42 | /** |
||
43 | * @return string |
||
44 | */ |
||
45 | public function getIdentifier() |
||
49 | |||
50 | /** |
||
51 | * @param string $identifier |
||
52 | */ |
||
53 | public function setIdentifier(string $identifier) |
||
57 | |||
58 | /** |
||
59 | * @return string |
||
60 | */ |
||
61 | public function jsonSerialize() |
||
65 | } |
||
66 |