mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2026-05-04 05:06:37 +00:00
Various code clean up. [skip ci]
This commit is contained in:
@@ -2,7 +2,6 @@
|
||||
declare(strict_types = 1);
|
||||
|
||||
|
||||
|
||||
return [
|
||||
|
||||
'allow_register' => true,
|
||||
|
||||
@@ -2,7 +2,6 @@
|
||||
declare(strict_types = 1);
|
||||
|
||||
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
@@ -32,17 +31,17 @@ return [
|
||||
'connections' => [
|
||||
|
||||
'pusher' => [
|
||||
'driver' => 'pusher',
|
||||
'key' => env('PUSHER_KEY'),
|
||||
'secret' => env('PUSHER_SECRET'),
|
||||
'app_id' => env('PUSHER_APP_ID'),
|
||||
'driver' => 'pusher',
|
||||
'key' => env('PUSHER_KEY'),
|
||||
'secret' => env('PUSHER_SECRET'),
|
||||
'app_id' => env('PUSHER_APP_ID'),
|
||||
'options' => [
|
||||
//
|
||||
],
|
||||
],
|
||||
|
||||
'redis' => [
|
||||
'driver' => 'redis',
|
||||
'driver' => 'redis',
|
||||
'connection' => 'default',
|
||||
],
|
||||
|
||||
|
||||
@@ -2,7 +2,6 @@
|
||||
declare(strict_types = 1);
|
||||
|
||||
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
@@ -40,8 +39,8 @@ return [
|
||||
],
|
||||
|
||||
'database' => [
|
||||
'driver' => 'database',
|
||||
'table' => 'cache',
|
||||
'driver' => 'database',
|
||||
'table' => 'cache',
|
||||
'connection' => null,
|
||||
],
|
||||
|
||||
@@ -60,7 +59,7 @@ return [
|
||||
],
|
||||
|
||||
'redis' => [
|
||||
'driver' => 'redis',
|
||||
'driver' => 'redis',
|
||||
'connection' => 'default',
|
||||
],
|
||||
|
||||
|
||||
@@ -2,7 +2,6 @@
|
||||
declare(strict_types = 1);
|
||||
|
||||
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|
||||
@@ -2,7 +2,6 @@
|
||||
declare(strict_types = 1);
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* This file is part of Entrust,
|
||||
* a role & permission management solution for Laravel.
|
||||
|
||||
@@ -2,7 +2,6 @@
|
||||
declare(strict_types = 1);
|
||||
|
||||
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|
||||
@@ -2,7 +2,6 @@
|
||||
declare(strict_types = 1);
|
||||
|
||||
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|
||||
@@ -2,7 +2,6 @@
|
||||
declare(strict_types = 1);
|
||||
|
||||
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|
||||
@@ -2,9 +2,8 @@
|
||||
declare(strict_types = 1);
|
||||
|
||||
|
||||
|
||||
return [
|
||||
'twig' => [
|
||||
'twig' => [
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Extension
|
||||
@@ -135,8 +134,8 @@ return [
|
||||
'facades' => [
|
||||
'Breadcrumbs' => [
|
||||
'is_safe' => [
|
||||
'renderIfExists'
|
||||
]
|
||||
'renderIfExists',
|
||||
],
|
||||
],
|
||||
'Session',
|
||||
'Route',
|
||||
@@ -148,13 +147,13 @@ return [
|
||||
'ExpandedForm' => [
|
||||
'is_safe' => [
|
||||
'date', 'text', 'select', 'balance', 'optionsList', 'checkbox', 'amount', 'tags', 'integer', 'textarea', 'location',
|
||||
'multiRadio', 'file', 'multiCheckbox', 'staticText', 'amountSmall',
|
||||
]
|
||||
'multiRadio', 'file', 'multiCheckbox', 'staticText', 'amountSmall',
|
||||
],
|
||||
],
|
||||
'Form' => [
|
||||
'is_safe' => [
|
||||
'input', 'select', 'checkbox', 'model', 'open', 'radio', 'textarea', 'file'
|
||||
]
|
||||
'input', 'select', 'checkbox', 'model', 'open', 'radio', 'textarea', 'file',
|
||||
],
|
||||
],
|
||||
],
|
||||
|
||||
@@ -190,7 +189,7 @@ return [
|
||||
'elixir',
|
||||
'head',
|
||||
'last',
|
||||
'old'
|
||||
'old',
|
||||
],
|
||||
|
||||
/*
|
||||
@@ -222,5 +221,5 @@ return [
|
||||
|
|
||||
*/
|
||||
'filters' => [],
|
||||
]
|
||||
],
|
||||
];
|
||||
|
||||
@@ -27,6 +27,6 @@ return [
|
||||
'Please follow the instructions on the following page: https://github.com/JC5/firefly-iii/wiki/Upgrade-to-3.7.0',
|
||||
'3.8.0' => 'This version of Firefly III requires PHP 7.0.',
|
||||
'3.8.1' => 'This version of Firefly III requires PHP 7.0.',
|
||||
'3.10' => 'Please find the full upgrade instructions here: https://github.com/JC5/firefly-iii/wiki/Upgrade-to-3.10'
|
||||
'3.10' => 'Please find the full upgrade instructions here: https://github.com/JC5/firefly-iii/wiki/Upgrade-to-3.10',
|
||||
],
|
||||
];
|
||||
|
||||
@@ -2,7 +2,6 @@
|
||||
declare(strict_types = 1);
|
||||
|
||||
|
||||
|
||||
return [
|
||||
|
||||
/*
|
||||
|
||||
Reference in New Issue
Block a user