コード例 #1
0
 /**
  * @param File $file
  *
  * @return $this
  */
 public function saveFile(File $file)
 {
     $file->save();
     $this->files[$file->getRealPath()] = $file;
     return $this;
 }
コード例 #2
0
ファイル: Layout.php プロジェクト: BlueCatTAT/kodicms-laravel
 /**
  * @param array $data
  * @return bool
  * @throws Exception
  */
 public function save(array $data = [])
 {
     return parent::save($data);
 }