| Total Complexity | 3 |
| Total Lines | 27 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 11 | class Image |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * @ORM\Id |
||
| 15 | * @ORM\GeneratedValue |
||
| 16 | * @ORM\Column(type="integer") |
||
| 17 | */ |
||
| 18 | private $id; |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @ORM\Column(type="string", length=255) |
||
| 22 | */ |
||
| 23 | private $path; |
||
| 24 | |||
| 25 | public function getId(): ?int |
||
| 26 | { |
||
| 27 | return $this->id; |
||
| 28 | } |
||
| 29 | |||
| 30 | public function getPath(): ?string |
||
| 33 | } |
||
| 34 | |||
| 35 | public function setPath(?string $path): void |
||
| 38 | } |
||
| 39 | } |
||
| 40 |