File tree 2 files changed +0
-5
lines changed
2 files changed +0
-5
lines changed Original file line number Diff line number Diff line change 1
1
<?php
2
2
3
3
use Aws \Laravel \AwsServiceProvider ;
4
- use Illuminate \Foundation \Application ;
5
4
6
5
return [
7
6
24
23
'region ' => env ('AWS_REGION ' , 'us-east-1 ' ),
25
24
'version ' => 'latest ' ,
26
25
'ua_append ' => [
27
- 'Laravel/ ' . Application::VERSION ,
28
26
'L5MOD/ ' . AwsServiceProvider::VERSION ,
29
27
],
30
28
];
Original file line number Diff line number Diff line change @@ -55,9 +55,6 @@ public function testVersionInformationIsProvidedToSdkUserAgent()
55
55
$ this ->assertArrayHasKey ('ua_append ' , $ config );
56
56
$ this ->assertInternalType ('array ' , $ config ['ua_append ' ]);
57
57
$ this ->assertNotEmpty ($ config ['ua_append ' ]);
58
- $ this ->assertNotEmpty (array_filter ($ config ['ua_append ' ], function ($ ua ) {
59
- return false !== strpos ($ ua , Application::VERSION );
60
- }));
61
58
$ this ->assertNotEmpty (array_filter ($ config ['ua_append ' ], function ($ ua ) {
62
59
return false !== strpos ($ ua , AwsServiceProvider::VERSION );
63
60
}));
You can’t perform that action at this time.
0 commit comments