Skip to content

Commit a605888

Browse files
author
Marko Dupor
committed
Config change
1 parent f2a6b90 commit a605888

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

src/JsonQueryServiceProvider.php

+6-7
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,18 @@
77
class JsonQueryServiceProvider extends ServiceProvider
88
{
99
/**
10-
* Bootstrap the application services.
10+
* Register the application services.
1111
*/
12-
public function boot()
12+
public function register()
1313
{
14-
$this->publishes([__DIR__ . '/Config/asseco-voice.php' => config_path('asseco-voice.php'),]);
14+
$this->mergeConfigFrom(__DIR__ . '/Config/asseco-json-query-builder.php', 'asseco-json-query-builder');
1515
}
1616

1717
/**
18-
* Register the application services.
18+
* Bootstrap the application services.
1919
*/
20-
public function register()
20+
public function boot()
2121
{
22-
$this->mergeConfigFrom(__DIR__ . '/Config/asseco-voice.php', 'asseco-voice');
22+
$this->publishes([__DIR__ . '/Config/asseco-json-query-builder.php' => config_path('asseco-json-query-builder.php'),]);
2323
}
24-
2524
}

0 commit comments

Comments
 (0)