Changeset 347
- Timestamp:
- 01/31/08 10:29:01 (6 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/2.3/classes/phing/tasks/ext/PhpCodeSnifferTask.php
r328 r347 96 96 public function setShowWarnings($show) 97 97 { 98 $this->showWarnings = StringHelper:: isBoolean($show);98 $this->showWarnings = StringHelper::booleanValue($show); 99 99 } 100 100 … … 153 153 public function setNoSubdirectories($subdirectories) 154 154 { 155 $this->noSubdirectories = StringHelper:: isBoolean($subdirectories);155 $this->noSubdirectories = StringHelper::booleanValue($subdirectories); 156 156 } 157 157 … … 172 172 public function setShowSniffs($show) 173 173 { 174 $this->showSniffs = StringHelper:: isBoolean($show);174 $this->showSniffs = StringHelper::booleanValue($show); 175 175 } 176 176
