Answer the question
In order to leave comments, you need to log in
How to include object properties in documentation?
there is a class
/**
* Это описание класса
*
* @property boolean $flag Описание свойства класса
*/
class MyClass extends \yii\base\Object{
private $_flag;
public function setData($value){
$this->_flag = $value;
}
public function getData(){
return $this->_flag;
}
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question