File tree Expand file tree Collapse file tree 3 files changed +14
-13
lines changed Expand file tree Collapse file tree 3 files changed +14
-13
lines changed Original file line number Diff line number Diff line change @@ -29,6 +29,7 @@ protected function process(array $values): array
29
29
foreach ($ values as $ k => &$ val ) {
30
30
if (is_array ($ val )) {
31
31
$ val = $ this ->process ($ val );
32
+
32
33
continue ;
33
34
}
34
35
Original file line number Diff line number Diff line change @@ -27,16 +27,16 @@ public static function save(Request $request): void
27
27
}
28
28
29
29
protected static function store (
30
- ?string $ name ,
31
- string $ method ,
32
- string $ scheme ,
33
- string $ host ,
34
- int |string |null $ port ,
35
- string $ path ,
30
+ ?string $ name ,
31
+ string $ method ,
32
+ string $ scheme ,
33
+ string $ host ,
34
+ int |string |null $ port ,
35
+ string $ path ,
36
36
array |string |null $ query ,
37
- array $ payload ,
38
- array $ headers ,
39
- ?string $ ip
37
+ array $ payload ,
38
+ array $ headers ,
39
+ ?string $ ip
40
40
): void {
41
41
HttpLog::create (compact (
42
42
'name ' ,
Original file line number Diff line number Diff line change @@ -15,10 +15,10 @@ public function testLogging(): void
15
15
$ path = 'api/pages ' ;
16
16
17
17
$ uri = $ path . '? ' . http_build_query ([
18
- 'foo ' => 'Foo ' ,
19
- 'token ' => 123 ,
20
- 'access_token ' => 456 ,
21
- ]);
18
+ 'foo ' => 'Foo ' ,
19
+ 'token ' => 123 ,
20
+ 'access_token ' => 456 ,
21
+ ]);
22
22
23
23
$ this ->assertDatabaseLogsCount (0 );
24
24
You can’t perform that action at this time.
0 commit comments