public function reload()
 {
     if ($this->store instanceof Reloadable) {
         $this->store->reload();
     }
 }
Esempio n. 2
0
 protected function reloadStore()
 {
     if ($this->flag >= 2 && $this->store instanceof Reloadable) {
         $this->store->reload();
     }
 }