mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2026-01-06 22:21:42 +00:00
Code cleanup.
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
@@ -54,4 +54,4 @@ return array(
|
||||
|
||||
'storage' => __DIR__ . '/../app/storage',
|
||||
|
||||
);
|
||||
];
|
||||
|
||||
@@ -38,10 +38,7 @@ $app = new Illuminate\Foundation\Application;
|
||||
*/
|
||||
|
||||
$env = $app->detectEnvironment(
|
||||
[
|
||||
'local' => ['SMJD*'],
|
||||
'homestead' => ['homestead']
|
||||
]
|
||||
['local' => ['SMJD*'], 'homestead' => ['homestead']]
|
||||
);
|
||||
|
||||
|
||||
@@ -69,8 +66,7 @@ $app->bindInstallPaths(require __DIR__ . '/paths.php');
|
||||
|
|
||||
*/
|
||||
|
||||
$framework = $app['path.base'] .
|
||||
'/vendor/laravel/framework/src';
|
||||
$framework = $app['path.base'] . '/vendor/laravel/framework/src';
|
||||
|
||||
require $framework . '/Illuminate/Foundation/start.php';
|
||||
|
||||
|
||||
Reference in New Issue
Block a user