diff options
author | Dylan William Hardison <dylan@hardison.net> | 2017-07-05 20:43:18 +0200 |
---|---|---|
committer | Dylan William Hardison <dylan@hardison.net> | 2017-07-07 00:19:20 +0200 |
commit | 37722eca39874bb6abdcd120e3e458bd62dea62b (patch) | |
tree | 57a9a9970c00ec77baecab7e154ef7dfcef863fe /Bugzilla/Whine | |
parent | a6f98de0d4e842351222b0173a1fff151da8738e (diff) | |
download | bugzilla-37722eca39874bb6abdcd120e3e458bd62dea62b.tar.gz bugzilla-37722eca39874bb6abdcd120e3e458bd62dea62b.tar.xz |
Bug 1377933 - Remove trailing whitespace from all perl files
Diffstat (limited to 'Bugzilla/Whine')
-rw-r--r-- | Bugzilla/Whine/Query.pm | 4 | ||||
-rw-r--r-- | Bugzilla/Whine/Schedule.pm | 16 |
2 files changed, 10 insertions, 10 deletions
diff --git a/Bugzilla/Whine/Query.pm b/Bugzilla/Whine/Query.pm index 886c54815..6ea91cc51 100644 --- a/Bugzilla/Whine/Query.pm +++ b/Bugzilla/Whine/Query.pm @@ -68,11 +68,11 @@ Bugzilla::Whine::Query - A query object used by L<Bugzilla::Whine>. =head1 DESCRIPTION This module exists to represent a query for a L<Bugzilla::Whine::Event>. -Each event, which are groups of schedules and queries based on how the +Each event, which are groups of schedules and queries based on how the user configured the event, may have zero or more queries associated with it. Additionally, the queries are selected from the user's saved searches, or L<Bugzilla::Search::Saved> object with a matching C<name> -attribute for the user. +attribute for the user. This is an implementation of L<Bugzilla::Object>, and so has all the same methods available as L<Bugzilla::Object>, in addition to what is diff --git a/Bugzilla/Whine/Schedule.pm b/Bugzilla/Whine/Schedule.pm index 0c159cf3f..017b744e5 100644 --- a/Bugzilla/Whine/Schedule.pm +++ b/Bugzilla/Whine/Schedule.pm @@ -32,11 +32,11 @@ use constant DB_COLUMNS => qw( ); use constant UPDATE_COLUMNS => qw( - eventid - run_day - run_time - run_next - mailto + eventid + run_day + run_time + run_next + mailto mailto_type ); use constant NAME_FIELD => 'id'; @@ -64,7 +64,7 @@ sub mailto { return $self->{mailto_object}; } -sub mailto_users { +sub mailto_users { my $self = shift; return $self->{mailto_users} if exists $self->{mailto_users}; my $object = $self->mailto; @@ -146,8 +146,8 @@ L</mailto> is a group or user. =item C<mailto> -This is either a L<Bugzilla::User> or L<Bugzilla::Group> object to represent -the user or group this scheduled event is set to be mailed to. +This is either a L<Bugzilla::User> or L<Bugzilla::Group> object to represent +the user or group this scheduled event is set to be mailed to. =item C<mailto_users> |