@@ -2,7 +2,7 @@ discard block |
||
2 | 2 | |
3 | 3 | return [ |
4 | 4 | |
5 | - /* |
|
5 | + /* |
|
6 | 6 | |-------------------------------------------------------------------------- |
7 | 7 | | Default Session Driver |
8 | 8 | |-------------------------------------------------------------------------- |
@@ -16,9 +16,9 @@ discard block |
||
16 | 16 | | |
17 | 17 | */ |
18 | 18 | |
19 | - 'driver' => env('SESSION_DRIVER', 'file'), |
|
19 | + 'driver' => env('SESSION_DRIVER', 'file'), |
|
20 | 20 | |
21 | - /* |
|
21 | + /* |
|
22 | 22 | |-------------------------------------------------------------------------- |
23 | 23 | | Session Lifetime |
24 | 24 | |-------------------------------------------------------------------------- |
@@ -29,11 +29,11 @@ discard block |
||
29 | 29 | | |
30 | 30 | */ |
31 | 31 | |
32 | - 'lifetime' => 120, |
|
32 | + 'lifetime' => 120, |
|
33 | 33 | |
34 | - 'expire_on_close' => false, |
|
34 | + 'expire_on_close' => false, |
|
35 | 35 | |
36 | - /* |
|
36 | + /* |
|
37 | 37 | |-------------------------------------------------------------------------- |
38 | 38 | | Session Encryption |
39 | 39 | |-------------------------------------------------------------------------- |
@@ -44,9 +44,9 @@ discard block |
||
44 | 44 | | |
45 | 45 | */ |
46 | 46 | |
47 | - 'encrypt' => false, |
|
47 | + 'encrypt' => false, |
|
48 | 48 | |
49 | - /* |
|
49 | + /* |
|
50 | 50 | |-------------------------------------------------------------------------- |
51 | 51 | | Session File Location |
52 | 52 | |-------------------------------------------------------------------------- |
@@ -57,9 +57,9 @@ discard block |
||
57 | 57 | | |
58 | 58 | */ |
59 | 59 | |
60 | - 'files' => storage_path('framework/sessions'), |
|
60 | + 'files' => storage_path('framework/sessions'), |
|
61 | 61 | |
62 | - /* |
|
62 | + /* |
|
63 | 63 | |-------------------------------------------------------------------------- |
64 | 64 | | Session Database Connection |
65 | 65 | |-------------------------------------------------------------------------- |
@@ -70,9 +70,9 @@ discard block |
||
70 | 70 | | |
71 | 71 | */ |
72 | 72 | |
73 | - 'connection' => null, |
|
73 | + 'connection' => null, |
|
74 | 74 | |
75 | - /* |
|
75 | + /* |
|
76 | 76 | |-------------------------------------------------------------------------- |
77 | 77 | | Session Database Table |
78 | 78 | |-------------------------------------------------------------------------- |
@@ -83,9 +83,9 @@ discard block |
||
83 | 83 | | |
84 | 84 | */ |
85 | 85 | |
86 | - 'table' => 'sessions', |
|
86 | + 'table' => 'sessions', |
|
87 | 87 | |
88 | - /* |
|
88 | + /* |
|
89 | 89 | |-------------------------------------------------------------------------- |
90 | 90 | | Session Sweeping Lottery |
91 | 91 | |-------------------------------------------------------------------------- |
@@ -96,9 +96,9 @@ discard block |
||
96 | 96 | | |
97 | 97 | */ |
98 | 98 | |
99 | - 'lottery' => [2, 100], |
|
99 | + 'lottery' => [2, 100], |
|
100 | 100 | |
101 | - /* |
|
101 | + /* |
|
102 | 102 | |-------------------------------------------------------------------------- |
103 | 103 | | Session Cookie Name |
104 | 104 | |-------------------------------------------------------------------------- |
@@ -109,9 +109,9 @@ discard block |
||
109 | 109 | | |
110 | 110 | */ |
111 | 111 | |
112 | - 'cookie' => 'laravel_session', |
|
112 | + 'cookie' => 'laravel_session', |
|
113 | 113 | |
114 | - /* |
|
114 | + /* |
|
115 | 115 | |-------------------------------------------------------------------------- |
116 | 116 | | Session Cookie Path |
117 | 117 | |-------------------------------------------------------------------------- |
@@ -122,9 +122,9 @@ discard block |
||
122 | 122 | | |
123 | 123 | */ |
124 | 124 | |
125 | - 'path' => '/', |
|
125 | + 'path' => '/', |
|
126 | 126 | |
127 | - /* |
|
127 | + /* |
|
128 | 128 | |-------------------------------------------------------------------------- |
129 | 129 | | Session Cookie Domain |
130 | 130 | |-------------------------------------------------------------------------- |
@@ -135,9 +135,9 @@ discard block |
||
135 | 135 | | |
136 | 136 | */ |
137 | 137 | |
138 | - 'domain' => null, |
|
138 | + 'domain' => null, |
|
139 | 139 | |
140 | - /* |
|
140 | + /* |
|
141 | 141 | |-------------------------------------------------------------------------- |
142 | 142 | | HTTPS Only Cookies |
143 | 143 | |-------------------------------------------------------------------------- |
@@ -148,6 +148,6 @@ discard block |
||
148 | 148 | | |
149 | 149 | */ |
150 | 150 | |
151 | - 'secure' => false, |
|
151 | + 'secure' => false, |
|
152 | 152 | |
153 | 153 | ]; |
@@ -2,7 +2,7 @@ discard block |
||
2 | 2 | |
3 | 3 | return [ |
4 | 4 | |
5 | - /* |
|
5 | + /* |
|
6 | 6 | |-------------------------------------------------------------------------- |
7 | 7 | | View Storage Paths |
8 | 8 | |-------------------------------------------------------------------------- |
@@ -13,11 +13,11 @@ discard block |
||
13 | 13 | | |
14 | 14 | */ |
15 | 15 | |
16 | - 'paths' => [ |
|
17 | - realpath(base_path('resources/views')) |
|
18 | - ], |
|
16 | + 'paths' => [ |
|
17 | + realpath(base_path('resources/views')) |
|
18 | + ], |
|
19 | 19 | |
20 | - /* |
|
20 | + /* |
|
21 | 21 | |-------------------------------------------------------------------------- |
22 | 22 | | Compiled View Path |
23 | 23 | |-------------------------------------------------------------------------- |
@@ -28,6 +28,6 @@ discard block |
||
28 | 28 | | |
29 | 29 | */ |
30 | 30 | |
31 | - 'compiled' => realpath(storage_path('framework/views')), |
|
31 | + 'compiled' => realpath(storage_path('framework/views')), |
|
32 | 32 | |
33 | 33 | ]; |
@@ -73,7 +73,7 @@ |
||
73 | 73 | $inheritMode = null; |
74 | 74 | |
75 | 75 | $grant = $args['grant']; |
76 | - $title = $args['title']; |
|
76 | + $title = $args['title']; |
|
77 | 77 | if (isset($args['mode'])) { |
78 | 78 | $inheritMode = $args['mode']; |
79 | 79 | } |
@@ -2,7 +2,7 @@ discard block |
||
2 | 2 | |
3 | 3 | return [ |
4 | 4 | |
5 | - /* |
|
5 | + /* |
|
6 | 6 | |-------------------------------------------------------------------------- |
7 | 7 | | Pagination Language Lines |
8 | 8 | |-------------------------------------------------------------------------- |
@@ -13,7 +13,7 @@ discard block |
||
13 | 13 | | |
14 | 14 | */ |
15 | 15 | |
16 | - 'previous' => '« Previous', |
|
17 | - 'next' => 'Next »', |
|
16 | + 'previous' => '« Previous', |
|
17 | + 'next' => 'Next »', |
|
18 | 18 | |
19 | 19 | ]; |
@@ -2,7 +2,7 @@ discard block |
||
2 | 2 | |
3 | 3 | return [ |
4 | 4 | |
5 | - /* |
|
5 | + /* |
|
6 | 6 | |-------------------------------------------------------------------------- |
7 | 7 | | Password Reminder Language Lines |
8 | 8 | |-------------------------------------------------------------------------- |
@@ -13,10 +13,10 @@ discard block |
||
13 | 13 | | |
14 | 14 | */ |
15 | 15 | |
16 | - 'password' => 'Passwords must be at least six characters and match the confirmation.', |
|
17 | - 'reset' => 'Your password has been reset!', |
|
18 | - 'sent' => 'We have e-mailed your password reset link!', |
|
19 | - 'token' => 'This password reset token is invalid.', |
|
20 | - 'user' => "We can't find a user with that e-mail address.", |
|
16 | + 'password' => 'Passwords must be at least six characters and match the confirmation.', |
|
17 | + 'reset' => 'Your password has been reset!', |
|
18 | + 'sent' => 'We have e-mailed your password reset link!', |
|
19 | + 'token' => 'This password reset token is invalid.', |
|
20 | + 'user' => "We can't find a user with that e-mail address.", |
|
21 | 21 | |
22 | 22 | ]; |
@@ -8,14 +8,14 @@ |
||
8 | 8 | */ |
9 | 9 | |
10 | 10 | $uri = urldecode( |
11 | - parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH) |
|
11 | + parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH) |
|
12 | 12 | ); |
13 | 13 | |
14 | 14 | // This file allows us to emulate Apache's "mod_rewrite" functionality from the |
15 | 15 | // built-in PHP web server. This provides a convenient way to test a Laravel |
16 | 16 | // application without having installed a "real" web server software here. |
17 | 17 | if ($uri !== '/' && file_exists(__DIR__.'/public'.$uri)) { |
18 | - return false; |
|
18 | + return false; |
|
19 | 19 | } |
20 | 20 | |
21 | 21 | require_once __DIR__.'/index.php'; |
@@ -283,7 +283,6 @@ |
||
283 | 283 | |
284 | 284 | /** |
285 | 285 | * validateDBInfo |
286 | - |
|
287 | 286 | * @param $dbInfo |
288 | 287 | * |
289 | 288 | * @return bool |
@@ -25,10 +25,10 @@ |
||
25 | 25 | protected $request; |
26 | 26 | |
27 | 27 | /** |
28 | - * tear down |
|
29 | - * |
|
30 | - * @return void |
|
31 | - */ |
|
28 | + * tear down |
|
29 | + * |
|
30 | + * @return void |
|
31 | + */ |
|
32 | 32 | public function tearDown() |
33 | 33 | { |
34 | 34 | m::close(); |
@@ -244,11 +244,11 @@ |
||
244 | 244 | |
245 | 245 | // create |
246 | 246 | Route::get('create', |
247 | - [ |
|
248 | - 'as' => 'settings.member.create', |
|
249 | - 'uses' => 'Member\Settings\UserController@create', |
|
250 | - 'settings_menu' => 'member.create' |
|
251 | - ] |
|
247 | + [ |
|
248 | + 'as' => 'settings.member.create', |
|
249 | + 'uses' => 'Member\Settings\UserController@create', |
|
250 | + 'settings_menu' => 'member.create' |
|
251 | + ] |
|
252 | 252 | ); |
253 | 253 | Route::post( |
254 | 254 | 'store', |