コード例 #1
0
ファイル: Factory.php プロジェクト: ascertain/NGshop
 public function saveState()
 {
     $this->cartManager->save();
     $this->environment->save();
 }
コード例 #2
0
 /**
  * @param int[] $list
  *
  * @return Website_OnlineShop_Demo_OnlineShop_RecentlyViewedProducts
  */
 protected function saveList(array $list)
 {
     $this->env->setCustomItem($this->getNamespace(), $list);
     $this->env->save();
     return $this;
 }