mirror of
https://github.com/yiisoft/yii.git
synced 2026-03-03 14:54:04 +01:00
14 lines
226 B
PHP
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;
|
|
}
|
|
} |