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 6643e8e commit 11fd1a7Copy full SHA for 11fd1a7
src/AwsServiceProvider.php
@@ -28,10 +28,10 @@ public function boot()
28
{
29
$source = realpath(__DIR__ . '/../config/aws.php');
30
31
- if ($this->app instanceof LaravelApplication && $app->runningInConsole()) {
+ if ($this->app instanceof LaravelApplication && $this->app->runningInConsole()) {
32
$this->publishes([$source => config_path('aws.php')]);
33
} elseif ($this->app instanceof LumenApplication) {
34
- $app->configure('aws');
+ $this->app->configure('aws');
35
}
36
37
$this->mergeConfigFrom($source, 'aws');
0 commit comments