We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6734041 commit ba5f302Copy full SHA for ba5f302
src/AwsServiceProvider.php
@@ -49,9 +49,7 @@ public function boot()
49
50
$this->mergeConfigFrom($config, 'aws');
51
52
- $this->publishes([
53
- $config => config_path('aws.php'),
54
- ], 'config');
+ $this->publishes([$config => config_path('aws.php')], 'config');
55
}
56
57
/**
@@ -62,7 +60,6 @@ public function boot()
62
60
public function register()
63
61
{
64
$this->app->singleton('aws', function ($app) {
65
-
66
// Instantiate the AWS service builder
67
$aws = Aws::factory($app['config']->get('aws'));
68
@@ -90,6 +87,6 @@ public function register()
90
87
*/
91
88
public function provides()
92
89
93
- return ['aws'];
+ return ['aws', 'Aws\Common\Aws'];
94
95
0 commit comments