Allow block/doc comment around control structure in function
Opened this issue · 0 comments
aik099 commented
Code with error:
public function selectButtonByValue($value)
{
/** @var $button RadioButton */
foreach ( $this as $button ) {
$a;
}
$something = 5;
/** @var ITypifiedElement $element */
foreach ( $iterator as $element ) {
$element->setName($this->getName());
}
}