Lines Matching refs:this

55         $this->cleanCssBin = $cleanCssBin;
56 $this->nodeBin = $nodeBin;
65 $this->keepLineBreaks = $keepLineBreaks;
74 $this->removeSpecialComments = $removeSpecialComments;
83 $this->onlyKeepFirstSpecialComment = $onlyKeepFirstSpecialComment;
91 $this->semanticMerging = $semanticMerging;
100 $this->rootPath = $rootPath;
109 $this->skipImport = $skipImport;
117 $this->timeout = $timeout;
126 $this->skipRebase = $skipRebase;
135 $this->skipRestructuring = $skipRestructuring;
144 $this->skipShorthandCompacting = $skipShorthandCompacting;
153 $this->sourceMap = $sourceMap;
162 $this->sourceMapInlineSources = $sourceMapInlineSources;
171 $this->skipAdvanced = $skipAdvanced;
180 $this->skipAggresiveMerging = $skipAggresiveMerging;
189 $this->skipImportFrom = $skipImportFrom;
198 $this->mediaMerging = $mediaMerging;
207 $this->roundingPrecision = $roundingPrecision;
216 $this->compatibility = $compatibility;
225 $this->debug = $debug;
244 $pb = $this->createProcessBuilder($this->nodeBin
245 ? array($this->nodeBin, $this->cleanCssBin)
246 : array($this->cleanCssBin));
248 if ($this->keepLineBreaks) {
252 if ($this->compatibility) {
253 $pb->add('--compatibility ' .$this->compatibility);
256 if ($this->debug) {
260 if ($this->rootPath) {
261 $pb->add('--root ' .$this->rootPath);
264 if ($this->skipImport) {
268 if ($this->timeout) {
269 $pb->add('--timeout ' .$this->timeout);
272 if ($this->roundingPrecision) {
273 $pb->add('--rounding-precision ' .$this->roundingPrecision);
276 if ($this->removeSpecialComments) {
280 if ($this->onlyKeepFirstSpecialComment) {
284 if ($this->semanticMerging) {
288 if ($this->skipAdvanced) {
292 if ($this->skipAggresiveMerging) {
296 if ($this->skipImportFrom) {
297 $pb->add('--skip-import-from ' .$this->skipImportFrom);
300 if ($this->mediaMerging) {
304 if ($this->skipRebase) {
308 if ($this->skipRestructuring) {
312 if ($this->skipShorthandCompacting) {
316 if ($this->sourceMap) {
320 if ($this->sourceMapInlineSources) {