Files
yii/tests/framework/base/NewApplicationComponent.php
alexander.makarow 1f757cbf53 improved unit tests
2011-02-18 15:25:38 +00:00

14 lines
258 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;
}
}