Skip to content

Commit

Permalink
Add strict/warnings to modules which use DBIx::Skinny
Browse files Browse the repository at this point in the history
Even though DBIx::Skinny enables strict/warnings for callers, CPANTS
can not detect this and deducts points from the Kwalitee score.
  • Loading branch information
timretout committed Mar 29, 2015
1 parent 8f4668e commit 5323503
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions lib/Qudo/Driver/Skinny.pm
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
package Qudo::Driver::Skinny;

use strict;
use warnings;

use DBIx::Skinny;

sub init_driver {
Expand Down
4 changes: 4 additions & 0 deletions lib/Qudo/Driver/Skinny/Schema.pm
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
package Qudo::Driver::Skinny::Schema;

use strict;
use warnings;

use DBIx::Skinny::Schema;

install_table job => schema {
Expand Down

0 comments on commit 5323503

Please sign in to comment.