Update config

This commit is contained in:
Barry vd. Heuvel
2015-01-28 10:02:50 +01:00
parent 1e6752a29f
commit c0aaabb6d7
2 changed files with 3 additions and 6 deletions
+2 -5
View File
@@ -1,7 +1,5 @@
<?php
use Illuminate\Support\Facades\Config;
return array(
/*
@@ -43,7 +41,7 @@ return array(
*/
'model_locations' => array(
'app/models',
'app',
),
@@ -57,7 +55,6 @@ return array(
*/
'extra' => array(
'Artisan' => array('Illuminate\Foundation\Artisan'),
'Eloquent' => array('Illuminate\Database\Eloquent\Builder', 'Illuminate\Database\Query\Builder'),
'Session' => array('Illuminate\Session\Store'),
),
@@ -86,7 +83,7 @@ return array(
*/
'interfaces' => array(
'\Illuminate\Auth\UserInterface' => Config::get('auth.model', 'User'),
'\Illuminate\Auth\UserInterface' => config('auth.model', 'User'),
)
);
+1 -1
View File
@@ -1,7 +1,7 @@
<?= '<?php' ?>
/**
* An helper file for Laravel 4, to provide autocomplete information to your IDE
* An helper file for Laravel 5, to provide autocomplete information to your IDE
* Generated for Laravel <?= $version ?> on <?= date("Y-m-d") ?>.
*
* @author Barry vd. Heuvel <[email protected]>