| Total Complexity | 2 |
| Total Lines | 23 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 2 | ||
| Bugs | 1 | Features | 1 |
| 1 | <?php declare(strict_types = 1); |
||
| 7 | trait Identifier |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @ORM\Id |
||
| 11 | * @ORM\Column(type="integer") |
||
| 12 | * @ORM\GeneratedValue(strategy="IDENTITY") |
||
| 13 | * @var int |
||
| 14 | */ |
||
| 15 | private $id; |
||
| 16 | |||
| 17 | |||
| 18 | public function __clone() |
||
| 21 | } |
||
| 22 | |||
| 23 | |||
| 24 | /** |
||
| 25 | * @return int |
||
| 26 | */ |
||
| 27 | final public function getId() |
||
| 33 |