| Total Complexity | 3 |
| Total Lines | 26 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | trait SeoTrait |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * @var ProductSeo |
||
| 13 | */ |
||
| 14 | protected $seo; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * @return ProductSeo|null |
||
| 18 | */ |
||
| 19 | public function getSeo(): ?ProductSeo |
||
| 20 | { |
||
| 21 | return $this->seo; |
||
| 22 | } |
||
| 23 | |||
| 24 | /** |
||
| 25 | * @param ProductSeo|null $seo |
||
| 26 | */ |
||
| 27 | public function setSeo(?ProductSeo $seo): void |
||
| 30 | } |
||
| 31 | |||
| 32 | protected function initSeo(): void |
||
| 35 | } |
||
| 36 | } |
||
| 37 |