Files
yii/tests/framework/base/AnotherNewApplicationComponent.php
2012-09-27 19:54:23 +04:00

14 lines
226 B
PHP

<?php
class AnotherNewApplicationComponent extends CApplicationComponent {
private $_text='new';
public function getText()
{
return $this->_text;
}
public function setText($value)
{
return $this->_text=$value;
}
}