Skip to content

Commit fa3811b

Browse files
committed
Removing an unneeded ternary statement
1 parent aed91c4 commit fa3811b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Aws/Laravel/AwsServiceProvider.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ public function register()
3939
{
4040
$this->app['aws'] = $this->app->share(function ($app) {
4141
// Retrieve the config
42-
$config = $app['config']['aws'] ?: $app['config']['aws::config'] ?: array();
42+
$config = $app['config']['aws'] ?: $app['config']['aws::config'];
4343
if (isset($config['config_file'])) {
4444
$config = $config['config_file'];
4545
}

0 commit comments

Comments
 (0)