Answer the question
In order to leave comments, you need to log in
How to write PHPDoc for setters and getters?
Suppose there is a class that allows you to edit its properties only with the help of getters and setters, for example:
class MyClass
{
/**
* @var string Название контроллера отвечающего за обработку запроса
*/
private $controllerName;
/**
* Установка названия контроллера отвечающего за обработку запроса
*
* @param string Название контроллера
*/
public function setСontrollerName($value)
{
$this->controllerName = $value;
}
/**
* Получение названия контроллера отвечающего за обработку запроса
*
* @return string Название контроллера
*/
public function getСontrollerName()
{
return $this->controllerName;
}
}
Answer the question
In order to leave comments, you need to log in
You can refer to an object property, in your example:
class MyClass
{
/**
* @var string Название контроллера отвечающего за обработку запроса
*/
private $controllerName;
/**
* @see MyClass::$controllerName
* @param string Название контроллера
*/
public function setСontrollerName($value)
{
$this->controllerName = $value;
}
/**
* @see MyClass::$controllerName
* @return string Название контроллера
*/
public function getСontrollerName()
{
return $this->controllerName;
}
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question