Completed
Push — master ( 8927df...f70445 )
by Abdelrahman
02:05
created

resources/lang/en/frontend/emails.php (12 issues)

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
3
/*
4
 * NOTICE OF LICENSE
5
 *
6
 * Part of the Rinvex Fort Package.
7
 *
8
 * This source file is subject to The MIT License (MIT)
9
 * that is bundled with this package in the LICENSE file.
10
 *
11
 * Package: Rinvex Fort Package
12
 * License: The MIT License (MIT)
13
 * Link:    https://rinvex.com
14
 */
15
16
return [
17
18
    'register' => [
19
        'welcome' => [
20
            'subject'                       => 'Account Registered Successfully!',
21
            'intro_default'                 => 'Your account has been successfully registered, you can login now and start using our services.',
0 ignored issues
show
This line exceeds maximum limit of 120 characters; contains 144 characters

Overly long lines are hard to read on any screen. Most code styles therefor impose a maximum limit on the number of characters in a line.

Loading history...
22
            'intro_moderation'              => 'Your account has been successfully registered, you have to wait until staff approve your registration before being able to login and start using our services.',
0 ignored issues
show
This line exceeds maximum limit of 120 characters; contains 208 characters

Overly long lines are hard to read on any screen. Most code styles therefor impose a maximum limit on the number of characters in a line.

Loading history...
23
            'intro_verification'            => 'Your account has been successfully registered, you will receive another email message for account verification before being able to login and start using our services.',
0 ignored issues
show
This line exceeds maximum limit of 120 characters; contains 217 characters

Overly long lines are hard to read on any screen. Most code styles therefor impose a maximum limit on the number of characters in a line.

Loading history...
24
            'intro_verification_moderation' => 'Your account has been successfully registered, you will receive another email message for account verification, then you have to wait until staff approve your registration before being able to login and start using our services.',
0 ignored issues
show
This line exceeds maximum limit of 120 characters; contains 278 characters

Overly long lines are hard to read on any screen. Most code styles therefor impose a maximum limit on the number of characters in a line.

Loading history...
25
        ],
26
    ],
27
28
    'auth' => [
29
        'lockout' => [
30
            'subject' => 'Your Account Locked',
31
            'intro'   => 'Your account has been locked out due to too multiple failed login attempts. Failed login attempt reference: Time: :created_at, IP Address: :ip, Agent: :agent.',
0 ignored issues
show
This line exceeds maximum limit of 120 characters; contains 186 characters

Overly long lines are hard to read on any screen. Most code styles therefor impose a maximum limit on the number of characters in a line.

Loading history...
32
            'outro'   => "If this wasn't you, please make sure to harden your acount security, and feel free to contact us regarding this issue.",
0 ignored issues
show
This line exceeds maximum limit of 120 characters; contains 146 characters

Overly long lines are hard to read on any screen. Most code styles therefor impose a maximum limit on the number of characters in a line.

Loading history...
33
        ],
34
    ],
35
36
    'passwordreset' => [
37
        'request' => [
38
            'action'  => 'Reset Password',
39
            'subject' => 'Your Password Reset Link',
40
            'intro'   => 'You are receiving this email because we received a password reset request for your account. Click the button below to reset your password (link expires in :expire minutes):',
0 ignored issues
show
This line exceeds maximum limit of 120 characters; contains 200 characters

Overly long lines are hard to read on any screen. Most code styles therefor impose a maximum limit on the number of characters in a line.

Loading history...
41
            'outro'   => 'If you did not request a password reset, no further action is required. Password reset request reference: Time: :created_at, IP Address: :ip, Agent: :agent.',
0 ignored issues
show
This line exceeds maximum limit of 120 characters; contains 184 characters

Overly long lines are hard to read on any screen. Most code styles therefor impose a maximum limit on the number of characters in a line.

Loading history...
42
        ],
43
    ],
44
45
    'verification' => [
46
        'email' => [
47
            'action'  => 'Verify Email',
48
            'subject' => 'Your Account Verification Link',
49
            'intro'   => "You are receiving this email because account's email requires verification. Click the button below to verify your email address (link expires in :expire minutes)::",
0 ignored issues
show
This line exceeds maximum limit of 120 characters; contains 191 characters

Overly long lines are hard to read on any screen. Most code styles therefor impose a maximum limit on the number of characters in a line.

Loading history...
50
            'outro'   => 'If you believe this is sent by mistake, no further action is required. Email verification request reference: Time: :created_at, IP Address: :ip, Agent: :agent.',
0 ignored issues
show
This line exceeds maximum limit of 120 characters; contains 187 characters

Overly long lines are hard to read on any screen. Most code styles therefor impose a maximum limit on the number of characters in a line.

Loading history...
51
52
            'success' => [
53
                'subject'          => 'Account Verified Successfully!',
54
                'intro_default'    => 'Your account has been successfully verified, you can login now and start using our services.',
0 ignored issues
show
This line exceeds maximum limit of 120 characters; contains 133 characters

Overly long lines are hard to read on any screen. Most code styles therefor impose a maximum limit on the number of characters in a line.

Loading history...
55
                'intro_moderation' => 'Your account has been successfully verified, but you still have to wait until staff approve your account before being able to login and start using our services.',
0 ignored issues
show
This line exceeds maximum limit of 120 characters; contains 202 characters

Overly long lines are hard to read on any screen. Most code styles therefor impose a maximum limit on the number of characters in a line.

Loading history...
56
            ],
57
        ],
58
    ],
59
60
61
];
62