Пример #1
0
 /**
  * Resets the instance variables before parsing new data.
  *
  * @return  void
  */
 protected function reset()
 {
     parent::reset();
     $this->records = [];
     $this->isEncrypted = false;
 }
Пример #2
0
 /**
  * Resets the instance variables before parsing new data.
  *
  * @return  void
  */
 protected function reset()
 {
     parent::reset();
     $this->client = '';
     $this->blockCount = 0;
     $this->blockSize = 0;
     $this->fileIDs = array();
     $this->packets = array();
 }
Пример #3
0
 /**
  * Resets the instance variables before parsing new data.
  *
  * @return  void
  */
 protected function reset()
 {
     parent::reset();
     $this->fileList = array();
     $this->comments = '';
 }
Пример #4
0
 /**
  * Resets the instance variables before parsing new data.
  *
  * @return  void
  */
 protected function reset()
 {
     parent::reset();
     $this->isVolume = false;
     $this->hasAuth = false;
     $this->hasRecovery = false;
     $this->isEncrypted = false;
     $this->blocks = array();
     $this->format = '';
     $this->comments = '';
 }
Пример #5
0
 /**
  * Resets the instance variables before parsing new data.
  *
  * @return  void
  */
 protected function reset()
 {
     $this->reader = null;
     foreach ($this->archives as $archive) {
         $archive->reset();
     }
     parent::reset();
     $this->archives = array();
     $this->type = self::TYPE_NONE;
     $this->isTemporary = false;
 }