You are here

public function CSSmin::set_chunk_length in Advanced CSS/JS Aggregation 7.2

Sets the approximate number of characters to use when splitting a string in chunks.

Parameters

int $length:

File

advagg_css_compress/yui/CSSMin.inc, line 167

Class

CSSmin

Code

public function set_chunk_length($length) {
  $length = (int) $length;
  $this->chunkLength = $length < $this->minChunkLength ? $this->minChunkLength : $length;
}