Skip to content

Commit

Permalink
Fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisflorin committed Aug 26, 2019
1 parent f1f5635 commit e31af08
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Illuminate/Mail/TransportManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ protected function createSesDriver()
*/
protected function addSesCredentials(array $config)
{
if (!empty($config['key']) && !empty($config['secret'])) {
if (! empty($config['key']) && ! empty($config['secret'])) {
$config['credentials'] = Arr::only($config, ['key', 'secret', 'token']);
}

Expand Down
2 changes: 1 addition & 1 deletion src/Illuminate/Queue/Connectors/SqsConnector.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public function connect(array $config)
{
$config = $this->getDefaultConfiguration($config);

if (!empty($config['key']) && empty($config['secret'])) {
if (! empty($config['key']) && ! empty($config['secret'])) {
$config['credentials'] = Arr::only($config, ['key', 'secret', 'token']);
}

Expand Down

0 comments on commit e31af08

Please sign in to comment.