Skip to content

Commit ab2b16d

Browse files
author
Felix
committed
move config file out of src
1 parent 29b585a commit ab2b16d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
File renamed without changes.

src/SearchConsoleServiceProvider.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ public function boot()
2626
*/
2727
public function register()
2828
{
29-
$this->mergeConfigFrom(__DIR__.'/config/search-console.php', 'search-console');
29+
$this->mergeConfigFrom(__DIR__ . '/../config/search-console.php', 'search-console');
3030

3131
$searchConsoleConfig = config('search-console');
3232

@@ -58,7 +58,7 @@ protected function guardAgainstInvalidConfiguration(array $searchConsoleConfig =
5858

5959
protected function setupConfig()
6060
{
61-
$source = realpath(__DIR__.'/config/search-console.php');
61+
$source = realpath(__DIR__ . '/../config/search-console.php');
6262

6363
if ($this->app instanceof LaravelApplication) {
6464
$this->publishes([$source => config_path('search-console.php')]);

0 commit comments

Comments
 (0)