The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package fatalwarnings;

$SIG{__WARN__} = sub {
  foreach my $warning (@_) {
    if($warning !~ /^DEPRECATION: Number::Phone.*should only be called as an object method/) {
      die("warning made fatal: $warning\n");
    }
  }
};

1;