Пример #1
0
 protected function save()
 {
     if ($this->store instanceof Saveable) {
         $this->store->save();
     }
 }
Пример #2
0
 protected function saveStore($force = false)
 {
     if (($this->flag > 0 || $force) && $this->store instanceof Saveable) {
         $this->store->save();
     }
 }