Apply fixes from StyleCI

This commit is contained in:
Dane Everitt 2017-01-17 23:21:33 +00:00 committed by StyleCI Bot
parent 31b4589eab
commit e2eff27a56
8 changed files with 8 additions and 8 deletions

View file

@ -80,7 +80,7 @@ class SecurityController extends Controller
{ {
if (! $request->has('token')) { if (! $request->has('token')) {
return response()->json([ return response()->json([
'error' => 'Request is missing token parameter.' 'error' => 'Request is missing token parameter.',
], 500); ], 500);
} }

View file

@ -266,7 +266,6 @@ class ServerController extends Controller
->join('database_servers', 'database_servers.id', '=', 'databases.db_server') ->join('database_servers', 'database_servers.id', '=', 'databases.db_server')
->get(), ->get(),
]); ]);
} }
public function getSFTP(Request $request, $uuid) public function getSFTP(Request $request, $uuid)

View file

@ -13,5 +13,5 @@ return [
'failed' => 'These credentials do not match our records.', 'failed' => 'These credentials do not match our records.',
'throttle' => 'Too many login attempts. Please try again in :seconds seconds.', 'throttle' => 'Too many login attempts. Please try again in :seconds seconds.',
'password_requirements' => 'Passwords must contain at least one uppercase, lowecase, and numeric character and must be at least 8 characters in length.', 'password_requirements' => 'Passwords must contain at least one uppercase, lowecase, and numeric character and must be at least 8 characters in length.',
'request_reset' => 'Locate Account' 'request_reset' => 'Locate Account',
]; ];

View file

@ -12,7 +12,7 @@ return [
'header' => 'API Access', 'header' => 'API Access',
'header_sub' => 'Manage your API access keys.', 'header_sub' => 'Manage your API access keys.',
'list' => 'API Keys', 'list' => 'API Keys',
'create_new' => 'Create new API key' 'create_new' => 'Create new API key',
], ],
], ],
'account' => [ 'account' => [

View file

@ -7,7 +7,7 @@ return [
'my_account' => 'My Account', 'my_account' => 'My Account',
'security_controls' => 'Security Controls', 'security_controls' => 'Security Controls',
'api_access' => 'API Access', 'api_access' => 'API Access',
'my_servers' => 'My Servers' 'my_servers' => 'My Servers',
], ],
'server' => [ 'server' => [
'header' => 'SERVER MANAGEMENT', 'header' => 'SERVER MANAGEMENT',
@ -22,6 +22,6 @@ return [
'port_allocations' => 'Port Allocations', 'port_allocations' => 'Port Allocations',
'sftp_settings' => 'SFTP Settings', 'sftp_settings' => 'SFTP Settings',
'startup_parameters' => 'Startup Parameters', 'startup_parameters' => 'Startup Parameters',
'databases' => 'Databases' 'databases' => 'Databases',
], ],
]; ];

View file

@ -1,4 +1,5 @@
<?php <?php
return [ return [
/* /*
|-------------------------------------------------------------------------- |--------------------------------------------------------------------------

View file

@ -5,5 +5,5 @@ return [
'title' => 'Viewing Server :name', 'title' => 'Viewing Server :name',
'header' => 'Server Console', 'header' => 'Server Console',
'header_sub' => 'Control your server in real time.', 'header_sub' => 'Control your server in real time.',
] ],
]; ];

View file

@ -35,5 +35,5 @@ return [
'api_access' => 'Api Access', 'api_access' => 'Api Access',
'never' => 'never', 'never' => 'never',
'sign_out' => 'Sign out', 'sign_out' => 'Sign out',
'admin_control' => 'Admin Control' 'admin_control' => 'Admin Control',
]; ];