-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Closed as not planned
Labels
Description
It would be cool to have fixer like this:
Before
/**
* Constructor.
*
* @param CurrencyDataTransformer $currencyTransformer
*/
public function __construct(CurrencyDataTransformer $currencyTransformer)
{
$this->currencyTransformer = $currencyTransformer;
}
After
/**
* @param CurrencyDataTransformer $currencyTransformer
*/
public function __construct(CurrencyDataTransformer $currencyTransformer)
{
$this->currencyTransformer = $currencyTransformer;
}
because Constructor.
is useless imo, or is this still possible?
Best regards and thank you,
Oskar
funivan, mirfilip, kubawerlos, xdefrag, iluuu1994 and 1 morexdefrag and ralfmaxxx