Add newlines and remove some unused translations.

This commit is contained in:
James Cole
2020-05-30 07:33:06 +02:00
parent 64ac3927ec
commit f3ac8a5888
67 changed files with 61 additions and 397 deletions

View File

@@ -230,4 +230,4 @@ trait AccountCollection
return $this;
}
}
}

View File

@@ -84,4 +84,4 @@ trait AmountCollection
return $this;
}
}
}

View File

@@ -56,4 +56,4 @@ trait CollectorProperties
private $total;
/** @var User The user object. */
private $user;
}
}

View File

@@ -288,4 +288,4 @@ trait MetaCollection
}
}
}

View File

@@ -108,4 +108,4 @@ class BudgetController extends Controller
);
}
}
}

View File

@@ -72,4 +72,4 @@ class Telemetry extends Model
'value' => 'array',
];
}
}

View File

@@ -198,4 +198,4 @@ class OperationsRepository implements OperationsRepositoryInterface
{
throw new FireflyException(sprintf('%s is not yet implemented', __METHOD__));
}
}
}

View File

@@ -84,4 +84,4 @@ interface OperationsRepositoryInterface
* @return array
*/
public function sumIncome(Carbon $start, Carbon $end, ?Collection $accounts = null): array;
}
}

View File

@@ -302,4 +302,4 @@ class AvailableBudgetRepository implements AvailableBudgetRepositoryInterface
->where('start_date', $start->format('Y-m-d 00:00:00'))
->where('end_date', $end->format('Y-m-d 00:00:00'))->first();
}
}
}

View File

@@ -154,4 +154,4 @@ interface AvailableBudgetRepositoryInterface
*/
public function updateAvailableBudget(AvailableBudget $availableBudget, array $data): AvailableBudget;
}
}

View File

@@ -463,4 +463,4 @@ class BudgetLimitRepository implements BudgetLimitRepositoryInterface
$budget->budgetlimits()->delete();
}
}
}
}

View File

@@ -146,4 +146,4 @@ interface BudgetLimitRepositoryInterface
*/
public function updateLimitAmount(Budget $budget, Carbon $start, Carbon $end, string $amount): ?BudgetLimit;
}
}

View File

@@ -200,4 +200,4 @@ class NoBudgetRepository implements NoBudgetRepositoryInterface
return $array;
}
}
}

View File

@@ -70,4 +70,4 @@ interface NoBudgetRepositoryInterface
*/
public function sumExpenses(Carbon $start, Carbon $end, ?Collection $accounts = null, ?TransactionCurrency $currency = null): array;
}
}

View File

@@ -433,4 +433,4 @@ class OperationsRepository implements OperationsRepositoryInterface
return $repos->getActiveBudgets();
}
}
}

View File

@@ -123,4 +123,4 @@ interface OperationsRepositoryInterface
*/
public function listExpenses(Carbon $start, Carbon $end, ?Collection $accounts = null, ?Collection $budgets = null): array;
}
}

View File

@@ -240,4 +240,4 @@ class NoCategoryRepository implements NoCategoryRepositoryInterface
return $array;
}
}
}

View File

@@ -88,4 +88,4 @@ interface NoCategoryRepositoryInterface
public function sumIncome(Carbon $start, Carbon $end, ?Collection $accounts = null): array;
}
}

View File

@@ -317,4 +317,4 @@ class OperationsRepository implements OperationsRepositoryInterface
return $set;
}
}
}

View File

@@ -89,4 +89,4 @@ interface OperationsRepositoryInterface
* @return array
*/
public function sumIncome(Carbon $start, Carbon $end, ?Collection $accounts = null, ?Collection $categories = null): array;
}
}

View File

@@ -251,4 +251,4 @@ class OperationsRepository implements OperationsRepositoryInterface
return $repository->get();
}
}
}

View File

@@ -90,4 +90,4 @@ interface OperationsRepositoryInterface
* @return array
*/
public function sumIncome(Carbon $start, Carbon $end, ?Collection $accounts = null, ?Collection $tags = null): array;
}
}

View File

@@ -64,4 +64,4 @@ class TelemetryRepository implements TelemetryRepositoryInterface
// created_at is never NULL.
Telemetry::whereNotNull('submitted')->delete();
}
}
}

View File

@@ -56,4 +56,4 @@ interface TelemetryRepositoryInterface
*/
public function deleteSubmitted(): void;
}
}

View File

@@ -71,4 +71,4 @@ class IsTransferAccount implements Rule
return !(false === $validAccount);
}
}
}

View File

@@ -217,4 +217,4 @@ class UpdateRequest implements UpdateRequestInterface
return $return;
}
}
}

View File

@@ -36,4 +36,4 @@ interface UpdateRequestInterface
*/
public function getUpdateInformation(string $channel): array;
}
}

View File

@@ -53,4 +53,4 @@ trait LocationServiceTrait
return null;
}
}
}

View File

@@ -264,4 +264,4 @@ class FrontpageChartGenerator
return $currencyData;
}
}
}

View File

@@ -86,4 +86,4 @@ class AutoBudgetCronjob extends AbstractCronjob
app('fireflyconfig')->set('last_ab_job', (int)$this->date->format('U'));
Log::info('Done with auto budget cron job task.');
}
}
}

View File

@@ -143,4 +143,4 @@ class AccountSearch implements GenericSearchInterface
$this->user = $user;
}
}
}

View File

@@ -35,4 +35,4 @@ interface GenericSearchInterface
*/
public function search(): Collection;
}
}

View File

@@ -37,4 +37,4 @@ class TransactionSearch implements GenericSearchInterface
{
// TODO: Implement search() method.
}
}
}

View File

@@ -145,4 +145,4 @@ class TransferSearch implements GenericSearchInterface
$this->source = $this->accountRepository->findByName($source, $this->types);
}
}
}
}

View File

@@ -109,4 +109,4 @@ class OAuthKeys
}
}
}
}

View File

@@ -49,4 +49,4 @@ trait AccountValidatorProperties
private $transactionType;
/** @var User */
private $user;
}
}

View File

@@ -139,4 +139,4 @@ trait DepositValidation
// don't expect to end up here:
return $result;
}
}
}

View File

@@ -145,4 +145,4 @@ trait OBValidation
return $result;
}
}
}

View File

@@ -104,4 +104,4 @@ trait ReconciliationValidation
return false;
}
}
}

View File

@@ -120,4 +120,4 @@ trait TransferValidation
return true;
}
}
}

View File

@@ -117,4 +117,4 @@ trait WithdrawalValidation
return true;
}
}
}

View File

@@ -69,4 +69,4 @@ trait CurrencyValidation
}
}
}
}
}

View File

@@ -129,4 +129,4 @@ trait GroupValidation
}
}
}