This check compares the return type specified in the @return annotation of a function
or method doc comment with the types returned by the function and raises an issue if they
mismatch.
Loading history...
38
*/
39
public function getData()
40
{
41
}
42
43
/**
44
* @return mixed
45
*/
46
public function init()
47
{
48
}
49
50
/**
51
* Возвращает количество записей
52
* @return int
53
*/
54
public function getCount()
55
{
56
return $this->count;
57
}
58
59
/**
60
* @param Conditions $conditions
61
* @return mixed
62
*/
63
public function setConditions(Conditions $conditions)
This check compares the return type specified in the
@return
annotation of a function or method doc comment with the types returned by the function and raises an issue if they mismatch.