mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-15 16:57:09 +00:00
Force PHP 7.3, break anything before PHP 7.3
This commit is contained in:
@@ -50,15 +50,16 @@ class Controller extends BaseController
|
||||
|
||||
/**
|
||||
* Controller constructor.
|
||||
*
|
||||
* @codeCoverageIgnore
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
// for transaction lists:
|
||||
app('view')->share('hideBudgets', false); // TODO add a comma when PHP7.3 hits so everybody will notice it.
|
||||
app('view')->share('hideCategories', false);
|
||||
app('view')->share('hideBills', false);
|
||||
app('view')->share('hideTags', false);
|
||||
app('view')->share('hideBudgets', false,); // Firefly III will break here if you don't have PHP 7.3up
|
||||
app('view')->share('hideCategories', false,);
|
||||
app('view')->share('hideBills', false,);
|
||||
app('view')->share('hideTags', false,);
|
||||
|
||||
// is site a demo site?
|
||||
$isDemoSite = app('fireflyconfig')->get('is_demo_site', config('firefly.configuration.is_demo_site'))->data;
|
||||
|
Reference in New Issue
Block a user