Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
Stolz committed Jan 11, 2016
2 parents a2a3bf5 + 576ccd7 commit f6ef2cf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Laravel/LegacyServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public function boot()
$config = $this->app->config->get('assets::config', []);

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

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

Expand Down

0 comments on commit f6ef2cf

Please sign in to comment.