Skip to content

Commit e2eff27

Browse files
DaneEverittStyleCIBot
authored andcommitted
Apply fixes from StyleCI
1 parent 31b4589 commit e2eff27

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

app/Http/Controllers/Base/SecurityController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ public function setTotp(Request $request)
8080
{
8181
if (! $request->has('token')) {
8282
return response()->json([
83-
'error' => 'Request is missing token parameter.'
83+
'error' => 'Request is missing token parameter.',
8484
], 500);
8585
}
8686

app/Http/Controllers/Server/ServerController.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,6 @@ public function getDatabases(Request $request, $uuid)
266266
->join('database_servers', 'database_servers.id', '=', 'databases.db_server')
267267
->get(),
268268
]);
269-
270269
}
271270

272271
public function getSFTP(Request $request, $uuid)

resources/lang/en/auth.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@
1313
'failed' => 'These credentials do not match our records.',
1414
'throttle' => 'Too many login attempts. Please try again in :seconds seconds.',
1515
'password_requirements' => 'Passwords must contain at least one uppercase, lowecase, and numeric character and must be at least 8 characters in length.',
16-
'request_reset' => 'Locate Account'
16+
'request_reset' => 'Locate Account',
1717
];

resources/lang/en/base.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
'header' => 'API Access',
1313
'header_sub' => 'Manage your API access keys.',
1414
'list' => 'API Keys',
15-
'create_new' => 'Create new API key'
15+
'create_new' => 'Create new API key',
1616
],
1717
],
1818
'account' => [

resources/lang/en/navigation.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
'my_account' => 'My Account',
88
'security_controls' => 'Security Controls',
99
'api_access' => 'API Access',
10-
'my_servers' => 'My Servers'
10+
'my_servers' => 'My Servers',
1111
],
1212
'server' => [
1313
'header' => 'SERVER MANAGEMENT',
@@ -22,6 +22,6 @@
2222
'port_allocations' => 'Port Allocations',
2323
'sftp_settings' => 'SFTP Settings',
2424
'startup_parameters' => 'Startup Parameters',
25-
'databases' => 'Databases'
25+
'databases' => 'Databases',
2626
],
2727
];

resources/lang/en/passwords.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?php
2+
23
return [
34
/*
45
|--------------------------------------------------------------------------

resources/lang/en/server.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@
55
'title' => 'Viewing Server :name',
66
'header' => 'Server Console',
77
'header_sub' => 'Control your server in real time.',
8-
]
8+
],
99
];

resources/lang/en/strings.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,5 @@
3535
'api_access' => 'Api Access',
3636
'never' => 'never',
3737
'sign_out' => 'Sign out',
38-
'admin_control' => 'Admin Control'
38+
'admin_control' => 'Admin Control',
3939
];

0 commit comments

Comments
 (0)