Skip to content

Commit a59d5d3

Browse files
author
Tortue Torche
committed
Fix the Laravel 'config' accessor which fails since Laravel 4.2.9
1 parent 218acc5 commit a59d5d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Efficiently/JqueryLaravel/JqueryLaravelServiceProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public function boot()
2525

2626
// Add jQuery Laravel assets path to the search paths of Larasset package
2727
$packageAssetsPaths = [$this->packagePath()."/provider/assets/javascripts"];
28-
$this->app->config->set('larasset::paths', array_merge($packageAssetsPaths, $this->app->config->get('larasset::paths', [])));
28+
$this->app['config']->set('larasset::paths', array_merge($packageAssetsPaths, $this->app['config']->get('larasset::paths', [])));
2929
}
3030

3131
/**

0 commit comments

Comments
 (0)