diff options
author | Matthew Somerville <matthew@mysociety.org> | 2015-11-20 21:21:44 +0000 |
---|---|---|
committer | Matthew Somerville <matthew@mysociety.org> | 2015-12-02 17:41:41 +0000 |
commit | 358faad2426a11573ec9597592076cc0ac43e5f7 (patch) | |
tree | 437d54dffb9442b6030ae7decfa9b495d97533b8 /perllib/FixMyStreet/SendReport/Email.pm | |
parent | 55412b79394ff1b1cabe368aed67fa8f68680ecc (diff) |
Move from Moose to Moo in non-App code.
And create default cobrand class without all of Moose.
Diffstat (limited to 'perllib/FixMyStreet/SendReport/Email.pm')
-rw-r--r-- | perllib/FixMyStreet/SendReport/Email.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perllib/FixMyStreet/SendReport/Email.pm b/perllib/FixMyStreet/SendReport/Email.pm index bc526ded2..3e993ecd6 100644 --- a/perllib/FixMyStreet/SendReport/Email.pm +++ b/perllib/FixMyStreet/SendReport/Email.pm @@ -1,6 +1,6 @@ package FixMyStreet::SendReport::Email; -use Moose; +use Moo; use FixMyStreet::Email; BEGIN { extends 'FixMyStreet::SendReport'; } |