コード例 #1
0
ファイル: Storage.php プロジェクト: ucsdmath/storage
 /**
  * Destructor.
  *
  * @api
  */
 public function __destruct()
 {
     parent::__destruct();
 }
コード例 #2
0
ファイル: FilesystemStorage.php プロジェクト: point/cassea
 public function __destruct()
 {
     $this->sync();
     if ($this->dir->exists()) {
         TTL::queued($this->name, $this->ttl);
     }
     parent::__destruct();
 }