Skip to content

Commit f6ef2cf

Browse files
committed
Merge branch 'develop'
2 parents a2a3bf5 + 576ccd7 commit f6ef2cf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Laravel/LegacyServiceProvider.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public function boot()
2121
$config = $this->app->config->get('assets::config', []);
2222

2323
// Apply config settings
24-
$this->app['stolz.assets']->config($config);
24+
$this->app['stolz.assets.group.default']->config($config);
2525

2626
// Add 'Assets' facade alias
2727
AliasLoader::getInstance()->alias('Assets', 'Stolz\Assets\Laravel\Facade');
@@ -37,8 +37,8 @@ public function boot()
3737
*/
3838
public function register()
3939
{
40-
// Bind 'stolz.assets' shared component to the IoC container
41-
$this->app->singleton('stolz.assets', function ($app) {
40+
// Bind 'stolz.assets.group.default' shared component to the IoC container
41+
$this->app->singleton('stolz.assets.group.default', function ($app) {
4242
return new Assets();
4343
});
4444

0 commit comments

Comments
 (0)