コード例 #1
0
 protected function save()
 {
     if ($this->store instanceof Saveable) {
         $this->store->save();
     }
 }
コード例 #2
0
ファイル: WarpManager.php プロジェクト: TBNRFrags2468/Economy
 protected function saveStore($force = false)
 {
     if (($this->flag > 0 || $force) && $this->store instanceof Saveable) {
         $this->store->save();
     }
 }