Shift with red gradient lettering
Loading navigation...

Remove DocBlocks

PHP

Removes all PHP DocBlocks including file, class, and method summaries, as well as property and variable assignments from your code.

Before

/**
* This returns the sum of two integers.
*
* @param int $a
* @param int $b
* @return int
*/
public function add($a, $b)
{
/** @var int */
$sum = $a + $b;
 
return $sum;
}

After

public function add($a, $b)
{
$sum = $a + $b;
 
return $sum;
}

← Back to the Workbench Tasks