Subject: | InputOutput::ProhibitJoinedReadline suggestion violates ProhibitPunctuationVars |
InputOutput::ProhibitJoinedReadline suggests
do { local $/ = undef; <$fh> }
but it should be
do { local $INPUT_RECORD_SEPARATOR = undef; <$fh> };
otherwise Perl::Critic reports a violation of ProhibitPunctuationVars