Skip to content

Commit cbeff74

Browse files
author
Dan Jewett
committed
move merge to register
1 parent f872b07 commit cbeff74

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

src/AzureServiceProvider.php

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,15 @@ public function boot()
1919
__DIR__ . '/../config/azure.php' => config_path('azure.php'),
2020
], 'azure-config');
2121
}
22-
else
23-
{
24-
$this->mergeConfigFrom(
25-
__DIR__ . '/../config/azure.php', 'azure'
26-
);
27-
}
22+
}
23+
24+
/**
25+
* {@inheritdoc}
26+
*/
27+
public function register()
28+
{
29+
$this->mergeConfigFrom(
30+
__DIR__ . '/../config/azure.php', 'azure'
31+
);
2832
}
2933
}

0 commit comments

Comments
 (0)