Skip to content

Commit

Permalink
Using ::class notation
Browse files Browse the repository at this point in the history
  • Loading branch information
nWidart committed Jun 1, 2016
1 parent 81c6f19 commit 668b80b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Http/Controllers/Admin/AdminBaseController.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ class AdminBaseController extends Controller

public function __construct()
{
$this->assetManager = app('Modules\Core\Foundation\Asset\Manager\AssetManager');
$this->assetPipeline = app('Modules\Core\Foundation\Asset\Pipeline\AssetPipeline');
$this->assetManager = app(AssetManager::class);
$this->assetPipeline = app(AssetPipeline::class);

$this->addAssets();
$this->requireDefaultAssets();
Expand Down

0 comments on commit 668b80b

Please sign in to comment.