Code reordering and reformatting. I should really start employing style CI.

This commit is contained in:
James Cole
2021-09-18 10:26:12 +02:00
parent 9b9d52e99f
commit 4003cea759
344 changed files with 2776 additions and 2605 deletions

View File

@@ -33,6 +33,7 @@ use FireflyIII\Models\TransactionType;
use FireflyIII\Repositories\Journal\JournalRepositoryInterface;
use FireflyIII\Support\CacheProperties;
use Illuminate\Support\Collection;
use JsonException;
use Log;
/**
@@ -78,7 +79,7 @@ trait PeriodOverview
*
* @return array
* @throws FireflyException
* @throws \JsonException
* @throws JsonException
*/
protected function getAccountPeriodOverview(Account $account, Carbon $start, Carbon $end): array
{
@@ -270,7 +271,7 @@ trait PeriodOverview
*
* @return array
* @throws FireflyException
* @throws \JsonException
* @throws JsonException
*/
protected function getCategoryPeriodOverview(Category $category, Carbon $start, Carbon $end): array
{
@@ -349,7 +350,7 @@ trait PeriodOverview
*
* @return array
* @throws FireflyException
* @throws \JsonException
* @throws JsonException
*/
protected function getNoBudgetPeriodOverview(Carbon $start, Carbon $end): array
{
@@ -403,7 +404,7 @@ trait PeriodOverview
*
* @return array
* @throws FireflyException
* @throws \JsonException
* @throws JsonException
*/
protected function getNoCategoryPeriodOverview(Carbon $theDate): array
{
@@ -484,7 +485,7 @@ trait PeriodOverview
*
* @return array
* @throws FireflyException
* @throws \JsonException
* @throws JsonException
*/
protected function getTagPeriodOverview(Tag $tag, Carbon $start, Carbon $end): array // period overview for tags.
{
@@ -559,7 +560,7 @@ trait PeriodOverview
*
* @return array
* @throws FireflyException
* @throws \JsonException
* @throws JsonException
*/
protected function getTransactionPeriodOverview(string $transactionType, Carbon $start, Carbon $end): array
{