Fix some code quality issues.

This commit is contained in:
James Cole 2020-04-10 10:47:24 +02:00
parent 79374c11ee
commit eed68b5d95
No known key found for this signature in database
GPG Key ID: B5669F9493CDE38D
32 changed files with 31 additions and 4 deletions

View File

@ -1,4 +1,5 @@
<?php <?php
declare(strict_types=1);
/** /**
* CorrectOpeningBalanceCurrencies.php * CorrectOpeningBalanceCurrencies.php
* Copyright (c) 2020 james@firefly-iii.org * Copyright (c) 2020 james@firefly-iii.org

View File

@ -1,4 +1,5 @@
<?php <?php
declare(strict_types=1);
/** /**
* FixLongDescriptions.php * FixLongDescriptions.php
* Copyright (c) 2020 james@firefly-iii.org * Copyright (c) 2020 james@firefly-iii.org

View File

@ -1,4 +1,5 @@
<?php <?php
declare(strict_types=1);
/** /**
* FixRecurringTransactions.php * FixRecurringTransactions.php
* Copyright (c) 2020 james@firefly-iii.org * Copyright (c) 2020 james@firefly-iii.org

View File

@ -1,4 +1,5 @@
<?php <?php
declare(strict_types=1);
/** /**

View File

@ -1,4 +1,5 @@
<?php <?php
declare(strict_types=1);
/** /**
* ExportData.php * ExportData.php
* Copyright (c) 2020 james@firefly-iii.org * Copyright (c) 2020 james@firefly-iii.org

View File

@ -1,4 +1,5 @@
<?php <?php
declare(strict_types=1);
/** /**
* RestoreOAuthKeys.php * RestoreOAuthKeys.php
* Copyright (c) 2020 james@firefly-iii.org * Copyright (c) 2020 james@firefly-iii.org

View File

@ -1,4 +1,5 @@
<?php <?php
declare(strict_types=1);
/** /**
* MigrateRecurrenceMeta.php * MigrateRecurrenceMeta.php
* Copyright (c) 2020 james@firefly-iii.org * Copyright (c) 2020 james@firefly-iii.org

View File

@ -1,4 +1,5 @@
<?php <?php
declare(strict_types=1);
/** /**
* MigrateTagLocations.php * MigrateTagLocations.php
* Copyright (c) 2020 james@firefly-iii.org * Copyright (c) 2020 james@firefly-iii.org

View File

@ -1,4 +1,5 @@
<?php <?php
declare(strict_types=1);
/** /**
* DuplicateTransactionException.php * DuplicateTransactionException.php
* Copyright (c) 2019 james@firefly-iii.org * Copyright (c) 2019 james@firefly-iii.org

View File

@ -1,4 +1,5 @@
<?php <?php
declare(strict_types=1);
/** /**
* TelemetryController.php * TelemetryController.php
* Copyright (c) 2020 thegrumpydictator@gmail.com * Copyright (c) 2020 thegrumpydictator@gmail.com

View File

@ -1,4 +1,5 @@
<?php <?php
declare(strict_types=1);
/** /**

View File

@ -450,8 +450,6 @@ class TagReportController extends Controller
$data = $this->generator->multiCurrencyPieChart($result); $data = $this->generator->multiCurrencyPieChart($result);
return response()->json($data); return response()->json($data);
return response()->json($data);
} }

View File

@ -1,4 +1,5 @@
<?php <?php
declare(strict_types=1);
/** /**
* TransactionController.php * TransactionController.php
* Copyright (c) 2020 thegrumpydictator@gmail.com * Copyright (c) 2020 thegrumpydictator@gmail.com

View File

@ -1,4 +1,5 @@
<?php <?php
declare(strict_types=1);
/** /**
* IndexController.php * IndexController.php
* Copyright (c) 2019 james@firefly-iii.org * Copyright (c) 2019 james@firefly-iii.org

View File

@ -1,4 +1,5 @@
<?php <?php
declare(strict_types=1);
/** /**
* DataController.php * DataController.php
* Copyright (c) 2019 james@firefly-iii.org * Copyright (c) 2019 james@firefly-iii.org

View File

@ -1,4 +1,5 @@
<?php <?php
declare(strict_types=1);
/** /**
* AutoBudget.php * AutoBudget.php
* Copyright (c) 2020 thegrumpydictator@gmail.com * Copyright (c) 2020 thegrumpydictator@gmail.com

View File

@ -1,4 +1,5 @@
<?php <?php
declare(strict_types=1);
/** /**
* Location.php * Location.php
* Copyright (c) 2019 james@firefly-iii.org * Copyright (c) 2019 james@firefly-iii.org

View File

@ -1,4 +1,5 @@
<?php <?php
declare(strict_types=1);
/** /**
* Telemetry.php * Telemetry.php
* Copyright (c) 2020 thegrumpydictator@gmail.com * Copyright (c) 2020 thegrumpydictator@gmail.com

View File

@ -1,4 +1,5 @@
<?php <?php
declare(strict_types=1);
/** /**
* IsTransferAccount.php * IsTransferAccount.php
* Copyright (c) 2019 james@firefly-iii.org * Copyright (c) 2019 james@firefly-iii.org

View File

@ -1,4 +1,5 @@
<?php <?php
declare(strict_types=1);
/** /**
* LessThanPiggyTarget.php * LessThanPiggyTarget.php
* Copyright (c) 2019 james@firefly-iii.org * Copyright (c) 2019 james@firefly-iii.org

View File

@ -1,4 +1,5 @@
<?php <?php
declare(strict_types=1);
/** /**
* UpdateRequest.php * UpdateRequest.php
* Copyright (c) 2019 james@firefly-iii.org * Copyright (c) 2019 james@firefly-iii.org

View File

@ -1,4 +1,5 @@
<?php <?php
declare(strict_types=1);
/** /**
* UpdateRequestInterface.php * UpdateRequestInterface.php
* Copyright (c) 2019 james@firefly-iii.org * Copyright (c) 2019 james@firefly-iii.org

View File

@ -1,4 +1,5 @@
<?php <?php
declare(strict_types=1);
/** /**
* LocationServiceTrait.php * LocationServiceTrait.php
* Copyright (c) 2019 james@firefly-iii.org * Copyright (c) 2019 james@firefly-iii.org

View File

@ -1,4 +1,5 @@
<?php <?php
declare(strict_types=1);
/** /**
* AutoBudgetCronjob.php * AutoBudgetCronjob.php
* Copyright (c) 2020 thegrumpydictator@gmail.com * Copyright (c) 2020 thegrumpydictator@gmail.com

View File

@ -1,4 +1,5 @@
<?php <?php
declare(strict_types=1);
/** /**
* ExportDataGenerator.php * ExportDataGenerator.php
* Copyright (c) 2019 james@firefly-iii.org * Copyright (c) 2019 james@firefly-iii.org

View File

@ -1,4 +1,5 @@
<?php <?php
declare(strict_types=1);
/** /**
* AccountSearch.php * AccountSearch.php
* Copyright (c) 2019 james@firefly-iii.org * Copyright (c) 2019 james@firefly-iii.org

View File

@ -1,4 +1,5 @@
<?php <?php
declare(strict_types=1);
/** /**
* GenericSearchInterface.php * GenericSearchInterface.php
* Copyright (c) 2019 james@firefly-iii.org * Copyright (c) 2019 james@firefly-iii.org

View File

@ -1,4 +1,5 @@
<?php <?php
declare(strict_types=1);
/** /**
* TransactionSearch.php * TransactionSearch.php
* Copyright (c) 2019 james@firefly-iii.org * Copyright (c) 2019 james@firefly-iii.org

View File

@ -1,4 +1,5 @@
<?php <?php
declare(strict_types=1);
/** /**
* TransferSearch.php * TransferSearch.php
* Copyright (c) 2019 james@firefly-iii.org * Copyright (c) 2019 james@firefly-iii.org

View File

@ -1,4 +1,5 @@
<?php <?php
declare(strict_types=1);
/** /**
* OAuthKeys.php * OAuthKeys.php
* Copyright (c) 2019 james@firefly-iii.org * Copyright (c) 2019 james@firefly-iii.org

View File

@ -1,4 +1,5 @@
<?php <?php
declare(strict_types=1);
/** /**
* Telemetry.php * Telemetry.php
* Copyright (c) 2020 thegrumpydictator@gmail.com * Copyright (c) 2020 thegrumpydictator@gmail.com

View File

@ -12,7 +12,7 @@
left: 20px; left: 20px;
z-index: 3001; z-index: 3001;
display: none; display: none;
font-family: arial; font-family: sans-serif, Arial;
font-size: 15px; font-size: 15px;
line-height: 1em; line-height: 1em;
} }
@ -155,7 +155,6 @@
font-size: 12px; font-size: 12px;
border-radius: 4px; border-radius: 4px;
border: 1px solid transparent; border: 1px solid transparent;
white-space: nowrap;
cursor: pointer; cursor: pointer;
} }