polyze/Polyze/RCount.pm

15 lines
331 B
Perl

package Polyze::RCount;
use Moose;
with 'Polyze::Reporter';
# This override is required in the case when self is not the first
# Reporter object added for the current scan. With real log files
# such a case is unlikely but I hit it with test input.
#
sub is_similar {
return 0;
}
no Moose;
__PACKAGE__->meta->make_immutable;