phpweaver icon indicating copy to clipboard operation
phpweaver copied to clipboard

Inline docBlock is replaced with function docBlock

Open AJenbo opened this issue 8 years ago • 1 comments

/** @var object */
$var = $this->getObject();

becomes:

/**
 * @param int $count
 *
 * @return bool
 */
$var = $this->getObject();

AJenbo avatar Dec 15 '17 14:12 AJenbo

Similar problem with the static keyword:

-        static $var = null;`
+        /**
+     * @return array
+     */
+    static $var = null;

#4 might fix this

AJenbo avatar Dec 15 '17 14:12 AJenbo