Skip to content

Commit 11fd1a7

Browse files
Fixed typos
1 parent 6643e8e commit 11fd1a7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/AwsServiceProvider.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ public function boot()
2828
{
2929
$source = realpath(__DIR__ . '/../config/aws.php');
3030

31-
if ($this->app instanceof LaravelApplication && $app->runningInConsole()) {
31+
if ($this->app instanceof LaravelApplication && $this->app->runningInConsole()) {
3232
$this->publishes([$source => config_path('aws.php')]);
3333
} elseif ($this->app instanceof LumenApplication) {
34-
$app->configure('aws');
34+
$this->app->configure('aws');
3535
}
3636

3737
$this->mergeConfigFrom($source, 'aws');

0 commit comments

Comments
 (0)