コード例 #1
0
 /**
  * @return string
  */
 protected function renderInner()
 {
     if ($this->inner instanceof Renderable) {
         return $this->inner->render();
     }
     return $this->inner;
 }
コード例 #2
0
ファイル: DisplayTab.php プロジェクト: DimaPikash/eshop
 /**
  * @param mixed $model
  */
 public function save($model)
 {
     if ($this->content instanceof FormInterface) {
         $this->content->save($model);
     }
 }