| Total Complexity | 4 |
| Total Lines | 32 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 7 | trait LogoTrait |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @ORM\Column(type="string", nullable=true) |
||
| 11 | */ |
||
| 12 | private $logoFilename; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * @ORM\Column(type="string", nullable=true) |
||
| 16 | */ |
||
| 17 | private $logoMimeType; |
||
| 18 | |||
| 19 | public function getLogoFilename(): ?string |
||
| 20 | { |
||
| 21 | return $this->logoFilename; |
||
| 22 | } |
||
| 23 | |||
| 24 | public function setLogoFilename(?string $logoFilename): self |
||
| 28 | } |
||
| 29 | |||
| 30 | public function getLogoMimeType(): ?string |
||
| 31 | { |
||
| 32 | return $this->logoMimeType; |
||
| 33 | } |
||
| 34 | |||
| 35 | public function setLogoMimeType(?string $logoMimeType): self |
||
| 39 | } |
||
| 40 | } |
||
| 41 |