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
Code
public function set_chunk_length($length) {
$length = (int) $length;
$this->chunkLength = $length < $this->minChunkLength ? $this->minChunkLength : $length;
}