Example #1
0
 /**
  * @param string $content
  */
 private function changeEncoding($content)
 {
     $this->tokenStore->setEncoding(Bom::getEncoding($content));
     $types = $this->tokenStore->getTokens();
     $this->minLength = count($types) > 0 ? strlen(array_keys($types)[0]) * 2 : 1;
     $this->buffer->setMinBufferSize($this->minLength);
 }