Files
yii/tests/unit/framework/base/NewApplicationComponent.php
2010-02-18 22:13:59 +00:00

14 lines
271 B
PHP

<?php
class NewApplicationComponent extends CApplicationComponent {
private $_text=NULL;
public function getText($text=NULL) {
if(NULL===$text) {
return $this->_text;
}
return $text;
}
public function setText($val) {
$this->_text = $val;
}
}