コード例 #1
0
ファイル: loco-packages.php プロジェクト: Webikon/wp-loco
 /**
  * Clear this package from the cache. Called to invalidate when something updates
  * @return LocoPackage
  */
 public function uncache()
 {
     $key = $this->get_type() . '_' . $this->handle;
     Loco::uncache($key);
     $this->_meta = null;
     return $this;
 }