mirror of
https://github.com/barryvdh/laravel-ide-helper.git
synced 2026-08-18 18:13:11 +00:00
Detect facades automaticcaly
This commit is contained in:
+2
-35
@@ -31,52 +31,19 @@ return array(
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Class Aliases
|
||||
| Custom Facades
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This array of class aliases will be parsed and added to the helper file.
|
||||
| These facades cannot be found directly, because of a Manager class.
|
||||
|
|
||||
*/
|
||||
|
||||
'aliases' => array(
|
||||
|
||||
'App' => 'Illuminate\Foundation\Application',
|
||||
'Artisan' => 'Illuminate\Foundation\Artisan',
|
||||
'Auth' => 'Illuminate\Auth\Guard',
|
||||
'Blade' => 'Illuminate\View\Compilers\BladeCompiler',
|
||||
'Cache' => 'Illuminate\Cache\Store',
|
||||
'ClassLoader'=> 'Illuminate\Support\ClassLoader',
|
||||
'Config' => 'Illuminate\Config\Repository',
|
||||
'Controller'=> 'Illuminate\Routing\Controllers\Controller',
|
||||
'Cookie' => 'Illuminate\Cookie\CookieJar',
|
||||
'Crypt' => 'Illuminate\Encryption\Encrypter',
|
||||
'DB' => 'Illuminate\Database\Connection',
|
||||
'Eloquent' => 'Illuminate\Database\Eloquent\Model',
|
||||
'Event' => 'Illuminate\Events\Event',
|
||||
'File' => 'Illuminate\Filesystem\Filesystem',
|
||||
'Form' => 'Illuminate\Html\FormBuilder',
|
||||
'Hash' => 'Illuminate\Hashing\BcryptHasher',
|
||||
'Html' => 'Illuminate\Html\HtmlBuilder',
|
||||
'Input' => 'Illuminate\Http\Request',
|
||||
'Lang' => 'Illuminate\Translation\Translator',
|
||||
'Log' => 'Illuminate\Log\Writer',
|
||||
'Mail' => 'Illuminate\Mail\Mailer',
|
||||
'Paginator' => 'Illuminate\Pagination\Environment',
|
||||
'Password' => 'Illuminate\Auth\Reminders\PasswordBroker',
|
||||
'Queue' => 'Illuminate\Queue\QueueInterface',
|
||||
'Redirect' => 'Illuminate\Routing\Redirector',
|
||||
'Redis' => 'Illuminate\Redis\Database',
|
||||
'Request' => 'Illuminate\Http\Request',
|
||||
'Response' => 'Illuminate\Http\Response',
|
||||
'Route' => 'Illuminate\Routing\Router',
|
||||
'Schema' => 'Illuminate\Database\Schema\Builder',
|
||||
'Seeder' => 'Illuminate\Database\Seeder',
|
||||
'Session' => 'Illuminate\Support\Facades\Session',
|
||||
'Str' => 'Illuminate\Support\Str',
|
||||
'URL' => 'Illuminate\Routing\UrlGenerator',
|
||||
'Validator' => 'Illuminate\Validation\Factory',
|
||||
'View' => 'Illuminate\View\Environment',
|
||||
|
||||
),
|
||||
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user