コード例 #1
0
 /**
  * {@inheritdoc}
  */
 public function close()
 {
     if ($this->stream !== NULL) {
         $this->hash = hash_final($this->md5);
     }
     parent::close();
 }
コード例 #2
0
ファイル: CachedInputStream.php プロジェクト: koolkode/stream
 /**
  * {@inheritdoc}
  */
 public function close()
 {
     if ($this->buffer !== NULL) {
         fclose($this->buffer);
         $this->buffer = NULL;
     }
     parent::close();
 }