소스 검색

Correctif modèle Page

develop
Guillaume 3 년 전
부모
커밋
39b03080cd
1개의 변경된 파일0개의 추가작업 그리고 36개의 파일을 삭제
  1. +0
    -36
      Model/Site/PageModel.php

+ 0
- 36
Model/Site/PageModel.php 파일 보기

@@ -19,18 +19,6 @@ abstract class PageModel extends AbstractFullEntity implements PageInterface
*/
protected $content;

/**
* @ORM\ManyToOne(targetEntity="Lc\CaracoleBundle\Model\Merchant\MerchantInterface", inversedBy="pages")
* @ORM\JoinColumn(nullable=false)
*/
protected $merchant;

/**
* @ORM\ManyToOne(targetEntity="Lc\CaracoleBundle\Model\Section\SectionInterface", inversedBy="pages")
*/
protected $section;


public function __toString()
{
return $this->getTitle();
@@ -48,28 +36,4 @@ abstract class PageModel extends AbstractFullEntity implements PageInterface
return $this;
}

public function getMerchant(): ?MerchantInterface
{
return $this->merchant;
}

public function setMerchant(?MerchantInterface $merchant): self
{
$this->merchant = $merchant;

return $this;
}

public function getSection(): ?SectionInterface
{
return $this->section;
}

public function setSection(?SectionInterface $section): self
{
$this->section = $section;

return $this;
}

}

Loading…
취소
저장