public function reload()
 {
     if ($this->store instanceof Reloadable) {
         $this->store->reload();
     }
 }
示例#2
0
 protected function reloadStore()
 {
     if ($this->flag >= 2 && $this->store instanceof Reloadable) {
         $this->store->reload();
     }
 }