There is an ongoing outage on the primary CPAN mirror. It is possible to work around the issue by using MetaCPAN as a mirror.

DESCRIPTION

This rule rewrites those assignments that alter a single varible with itself. For example, this one:

$x = $x + 2;

Is rewritten with the += assignment operator, as:

$x += 2;