mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-12-17 11:59:05 +00:00
77 lines
2.2 KiB
PHP
77 lines
2.2 KiB
PHP
<?php
|
|
|
|
return [
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Filename
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| The default path to the helper file
|
|
|
|
|
*/
|
|
|
|
'filename' => '_ide_helper.php',
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Helper files to include
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Include helper files. By default not included, but can be toggled with the
|
|
| -- helpers (-H) option. Extra helper files can be included.
|
|
|
|
|
*/
|
|
|
|
'include_helpers' => false,
|
|
|
|
'helper_files' => [
|
|
base_path() . '/vendor/laravel/framework/src/Illuminate/Support/helpers.php',
|
|
],
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Model locations to include
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| Define in which directories the ide-helper:models command should look
|
|
| for models.
|
|
|
|
|
*/
|
|
|
|
'model_locations' => [
|
|
'app/models',
|
|
],
|
|
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Extra classes
|
|
|--------------------------------------------------------------------------
|
|
|
|
|
| These implementations are not really extended, but called with magic functions
|
|
|
|
|
*/
|
|
|
|
'extra' => [
|
|
'Artisan' => ['Illuminate\Foundation\Artisan'],
|
|
'Eloquent' => ['Illuminate\Database\Eloquent\Builder', 'Illuminate\Database\Query\Builder'],
|
|
'Session' => ['Illuminate\Session\Store'],
|
|
],
|
|
|
|
'magic' => [
|
|
'Log' => [
|
|
'debug' => 'Monolog\Logger::addDebug',
|
|
'info' => 'Monolog\Logger::addInfo',
|
|
'notice' => 'Monolog\Logger::addNotice',
|
|
'warning' => 'Monolog\Logger::addWarning',
|
|
'error' => 'Monolog\Logger::addError',
|
|
'critical' => 'Monolog\Logger::addCritical',
|
|
'alert' => 'Monolog\Logger::addAlert',
|
|
'emergency' => 'Monolog\Logger::addEmergency',
|
|
]
|
|
]
|
|
|
|
|
|
];
|