phpweaver
phpweaver copied to clipboard
Inline docBlock is replaced with function docBlock
/** @var object */
$var = $this->getObject();
becomes:
/**
* @param int $count
*
* @return bool
*/
$var = $this->getObject();
Similar problem with the static keyword:
- static $var = null;`
+ /**
+ * @return array
+ */
+ static $var = null;
#4 might fix this