Skip to content

Commit e937b1e

Browse files
committed
Removed usage of a dev dependency
1 parent a6e0e84 commit e937b1e

File tree

2 files changed

+0
-5
lines changed

2 files changed

+0
-5
lines changed

config/aws.php

-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
<?php
22

33
use Aws\Laravel\AwsServiceProvider;
4-
use Illuminate\Foundation\Application;
54

65
return [
76

@@ -24,7 +23,6 @@
2423
'region' => env('AWS_REGION', 'us-east-1'),
2524
'version' => 'latest',
2625
'ua_append' => [
27-
'Laravel/' . Application::VERSION,
2826
'L5MOD/' . AwsServiceProvider::VERSION,
2927
],
3028
];

tests/AwsServiceProviderTest.php

-3
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,6 @@ public function testVersionInformationIsProvidedToSdkUserAgent()
5555
$this->assertArrayHasKey('ua_append', $config);
5656
$this->assertInternalType('array', $config['ua_append']);
5757
$this->assertNotEmpty($config['ua_append']);
58-
$this->assertNotEmpty(array_filter($config['ua_append'], function ($ua) {
59-
return false !== strpos($ua, Application::VERSION);
60-
}));
6158
$this->assertNotEmpty(array_filter($config['ua_append'], function ($ua) {
6259
return false !== strpos($ua, AwsServiceProvider::VERSION);
6360
}));

0 commit comments

Comments
 (0)