Skip to content

Commit

Permalink
Issue #4106: move use parentto just below the other pragmats
Browse files Browse the repository at this point in the history
because this seems to be the convention in OTOBO
  • Loading branch information
bschmalhofer committed Jan 27, 2025
1 parent 8a3fff6 commit 18890ff
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Kernel/System/MailAccount/IMAP.pm
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@

package Kernel::System::MailAccount::IMAP;

use v5.24;
use strict;
use warnings;
use v5.24;

# core modules

Expand Down
5 changes: 5 additions & 0 deletions Kernel/System/MailAccount/POP3.pm
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,13 @@ package Kernel::System::MailAccount::POP3;
use strict;
use warnings;

# core modules
use Net::POP3;

# CPAN modules

# OTOBO modules

our @ObjectDependencies = (
'Kernel::Config',
'Kernel::System::CommunicationLog',
Expand Down
4 changes: 2 additions & 2 deletions Kernel/System/MailAccount/POP3S.pm
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@ package Kernel::System::MailAccount::POP3S;
use strict;
use warnings;

use parent qw(Kernel::System::MailAccount::POP3);

# core modules
use Net::POP3;

# CPAN modules

# OTOBO modules

use parent qw(Kernel::System::MailAccount::POP3);

our @ObjectDependencies = (
);

Expand Down
4 changes: 2 additions & 2 deletions Kernel/System/MailAccount/POP3TLS.pm
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@ package Kernel::System::MailAccount::POP3TLS;
use strict;
use warnings;

use parent qw(Kernel::System::MailAccount::POP3);

# core modules
use Net::POP3;

# CPAN modules

# OTOBO modules

use parent qw(Kernel::System::MailAccount::POP3);

our @ObjectDependencies = (
);

Expand Down

0 comments on commit 18890ff

Please sign in to comment.