mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2026-01-10 12:24:50 +00:00
Add newlines and remove some unused translations.
This commit is contained in:
@@ -230,4 +230,4 @@ trait AccountCollection
|
||||
|
||||
return $this;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -84,4 +84,4 @@ trait AmountCollection
|
||||
|
||||
return $this;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -56,4 +56,4 @@ trait CollectorProperties
|
||||
private $total;
|
||||
/** @var User The user object. */
|
||||
private $user;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -288,4 +288,4 @@ trait MetaCollection
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -108,4 +108,4 @@ class BudgetController extends Controller
|
||||
);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -72,4 +72,4 @@ class Telemetry extends Model
|
||||
'value' => 'array',
|
||||
];
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -198,4 +198,4 @@ class OperationsRepository implements OperationsRepositoryInterface
|
||||
{
|
||||
throw new FireflyException(sprintf('%s is not yet implemented', __METHOD__));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -84,4 +84,4 @@ interface OperationsRepositoryInterface
|
||||
* @return array
|
||||
*/
|
||||
public function sumIncome(Carbon $start, Carbon $end, ?Collection $accounts = null): array;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -154,4 +154,4 @@ interface AvailableBudgetRepositoryInterface
|
||||
*/
|
||||
public function updateAvailableBudget(AvailableBudget $availableBudget, array $data): AvailableBudget;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -463,4 +463,4 @@ class BudgetLimitRepository implements BudgetLimitRepositoryInterface
|
||||
$budget->budgetlimits()->delete();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -146,4 +146,4 @@ interface BudgetLimitRepositoryInterface
|
||||
*/
|
||||
public function updateLimitAmount(Budget $budget, Carbon $start, Carbon $end, string $amount): ?BudgetLimit;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -200,4 +200,4 @@ class NoBudgetRepository implements NoBudgetRepositoryInterface
|
||||
|
||||
return $array;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -70,4 +70,4 @@ interface NoBudgetRepositoryInterface
|
||||
*/
|
||||
public function sumExpenses(Carbon $start, Carbon $end, ?Collection $accounts = null, ?TransactionCurrency $currency = null): array;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -433,4 +433,4 @@ class OperationsRepository implements OperationsRepositoryInterface
|
||||
|
||||
return $repos->getActiveBudgets();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -123,4 +123,4 @@ interface OperationsRepositoryInterface
|
||||
*/
|
||||
public function listExpenses(Carbon $start, Carbon $end, ?Collection $accounts = null, ?Collection $budgets = null): array;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -240,4 +240,4 @@ class NoCategoryRepository implements NoCategoryRepositoryInterface
|
||||
|
||||
return $array;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -88,4 +88,4 @@ interface NoCategoryRepositoryInterface
|
||||
public function sumIncome(Carbon $start, Carbon $end, ?Collection $accounts = null): array;
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -317,4 +317,4 @@ class OperationsRepository implements OperationsRepositoryInterface
|
||||
|
||||
return $set;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -89,4 +89,4 @@ interface OperationsRepositoryInterface
|
||||
* @return array
|
||||
*/
|
||||
public function sumIncome(Carbon $start, Carbon $end, ?Collection $accounts = null, ?Collection $categories = null): array;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -251,4 +251,4 @@ class OperationsRepository implements OperationsRepositoryInterface
|
||||
|
||||
return $repository->get();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -90,4 +90,4 @@ interface OperationsRepositoryInterface
|
||||
* @return array
|
||||
*/
|
||||
public function sumIncome(Carbon $start, Carbon $end, ?Collection $accounts = null, ?Collection $tags = null): array;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -64,4 +64,4 @@ class TelemetryRepository implements TelemetryRepositoryInterface
|
||||
// created_at is never NULL.
|
||||
Telemetry::whereNotNull('submitted')->delete();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -56,4 +56,4 @@ interface TelemetryRepositoryInterface
|
||||
*/
|
||||
public function deleteSubmitted(): void;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -71,4 +71,4 @@ class IsTransferAccount implements Rule
|
||||
|
||||
return !(false === $validAccount);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -217,4 +217,4 @@ class UpdateRequest implements UpdateRequestInterface
|
||||
|
||||
return $return;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -36,4 +36,4 @@ interface UpdateRequestInterface
|
||||
*/
|
||||
public function getUpdateInformation(string $channel): array;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -53,4 +53,4 @@ trait LocationServiceTrait
|
||||
return null;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -264,4 +264,4 @@ class FrontpageChartGenerator
|
||||
return $currencyData;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -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.');
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -143,4 +143,4 @@ class AccountSearch implements GenericSearchInterface
|
||||
$this->user = $user;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -35,4 +35,4 @@ interface GenericSearchInterface
|
||||
*/
|
||||
public function search(): Collection;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -37,4 +37,4 @@ class TransactionSearch implements GenericSearchInterface
|
||||
{
|
||||
// TODO: Implement search() method.
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -145,4 +145,4 @@ class TransferSearch implements GenericSearchInterface
|
||||
$this->source = $this->accountRepository->findByName($source, $this->types);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -109,4 +109,4 @@ class OAuthKeys
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -49,4 +49,4 @@ trait AccountValidatorProperties
|
||||
private $transactionType;
|
||||
/** @var User */
|
||||
private $user;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -139,4 +139,4 @@ trait DepositValidation
|
||||
// don't expect to end up here:
|
||||
return $result;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -145,4 +145,4 @@ trait OBValidation
|
||||
|
||||
return $result;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -104,4 +104,4 @@ trait ReconciliationValidation
|
||||
return false;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -120,4 +120,4 @@ trait TransferValidation
|
||||
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -117,4 +117,4 @@ trait WithdrawalValidation
|
||||
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -69,4 +69,4 @@ trait CurrencyValidation
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -129,4 +129,4 @@ trait GroupValidation
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user