polyze/Polyze/RCount.pm

15 lines
331 B
Perl
Raw Permalink Normal View History

2022-09-04 16:37:21 +00:00
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;