Skip to content

Commit f6cc606

Browse files
authored
Merge pull request #14 from LaunchPadCS/analysis-8jpQpB
Apply fixes from StyleCI
2 parents 27944f6 + 435955e commit f6cc606

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

config/hashing.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@
1717

1818
'driver' => 'bcrypt',
1919

20-
];
20+
];

config/logging.php

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -31,40 +31,40 @@
3131

3232
'channels' => [
3333
'stack' => [
34-
'driver' => 'stack',
34+
'driver' => 'stack',
3535
'channels' => ['single'],
3636
],
3737

3838
'single' => [
3939
'driver' => 'single',
40-
'path' => storage_path('logs/laravel.log'),
41-
'level' => 'debug',
40+
'path' => storage_path('logs/laravel.log'),
41+
'level' => 'debug',
4242
],
4343

4444
'daily' => [
4545
'driver' => 'daily',
46-
'path' => storage_path('logs/laravel.log'),
47-
'level' => 'debug',
48-
'days' => 7,
46+
'path' => storage_path('logs/laravel.log'),
47+
'level' => 'debug',
48+
'days' => 7,
4949
],
5050

5151
'slack' => [
52-
'driver' => 'slack',
53-
'url' => env('LOG_SLACK_WEBHOOK_URL'),
52+
'driver' => 'slack',
53+
'url' => env('LOG_SLACK_WEBHOOK_URL'),
5454
'username' => 'Laravel Log',
55-
'emoji' => ':boom:',
56-
'level' => 'critical',
55+
'emoji' => ':boom:',
56+
'level' => 'critical',
5757
],
5858

5959
'syslog' => [
6060
'driver' => 'syslog',
61-
'level' => 'debug',
61+
'level' => 'debug',
6262
],
6363

6464
'errorlog' => [
6565
'driver' => 'errorlog',
66-
'level' => 'debug',
66+
'level' => 'debug',
6767
],
6868
],
6969

70-
];
70+
];

0 commit comments

Comments
 (0)