mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-05 04:03:26 +00:00
Merge branch 'develop' of github.com:firefly-iii/firefly-iii into develop
This commit is contained in:
@@ -346,7 +346,6 @@ class ReportController extends Controller
|
|||||||
$budgets = implode(',', $request->getBudgetList()->pluck('id')->toArray());
|
$budgets = implode(',', $request->getBudgetList()->pluck('id')->toArray());
|
||||||
$tags = implode(',', $request->getTagList()->pluck('id')->toArray());
|
$tags = implode(',', $request->getTagList()->pluck('id')->toArray());
|
||||||
$double = implode(',', $request->getDoubleList()->pluck('id')->toArray());
|
$double = implode(',', $request->getDoubleList()->pluck('id')->toArray());
|
||||||
$uri = route('reports.index');
|
|
||||||
|
|
||||||
if (0 === $request->getAccountList()->count()) {
|
if (0 === $request->getAccountList()->count()) {
|
||||||
Log::debug('Account count is zero');
|
Log::debug('Account count is zero');
|
||||||
|
19
sonar-project.properties
Normal file
19
sonar-project.properties
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
# must be unique in a given SonarQube instance
|
||||||
|
sonar.projectKey=firefly-iii
|
||||||
|
|
||||||
|
# --- optional properties ---
|
||||||
|
|
||||||
|
# defaults to project key
|
||||||
|
#sonar.projectName=My project
|
||||||
|
# defaults to 'not provided'
|
||||||
|
#sonar.projectVersion=1.0
|
||||||
|
|
||||||
|
# Path is relative to the sonar-project.properties file. Defaults to .
|
||||||
|
sonar.sources=app,bootstrap,database,public/v1/js/ff,resources/assets,resources/views,routes,tests
|
||||||
|
|
||||||
|
# Encoding of the source code. Default is default system encoding
|
||||||
|
sonar.sourceEncoding=UTF-8
|
||||||
|
|
||||||
|
|
||||||
|
# exclusions
|
||||||
|
sonar.coverage.exclusions=public/v1/js/ff/moment/*.js
|
Reference in New Issue
Block a user