mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
Add newlines.
This commit is contained in:
parent
ba97f96288
commit
afb47eb742
@ -142,4 +142,4 @@ class ReminderHelper implements ReminderHelperInterface
|
||||
return 'Add ' . Amount::format($reminder->metadata->perReminder) . ' to fill this piggy bank on ' . $piggyBank->targetdate->format('jS F Y');
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -48,4 +48,4 @@ interface ReminderHelperInterface {
|
||||
* @return Reminder
|
||||
*/
|
||||
public function createReminder(PiggyBank $piggyBank, Carbon $start, Carbon $end);
|
||||
}
|
||||
}
|
||||
|
@ -168,4 +168,4 @@ class ReportHelper implements ReportHelperInterface
|
||||
|
||||
return $report;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -55,4 +55,4 @@ interface ReportHelperInterface
|
||||
* @return array
|
||||
*/
|
||||
public function yearBalanceReport(Carbon $date, $showSharedReports = false);
|
||||
}
|
||||
}
|
||||
|
@ -604,4 +604,4 @@ class ReportQuery implements ReportQueryInterface
|
||||
);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
@ -163,4 +163,4 @@ interface ReportQueryInterface
|
||||
* @return Collection
|
||||
*/
|
||||
public function sharedExpensesByCategory(Carbon $start, Carbon $end);
|
||||
}
|
||||
}
|
||||
|
@ -136,4 +136,4 @@ class PiggyBanks
|
||||
|
||||
return $next($request);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -85,4 +85,4 @@ class Range
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
@ -88,4 +88,4 @@ class Reminders
|
||||
|
||||
return $next($request);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -54,4 +54,4 @@ class ReplaceTestVars
|
||||
return $next($request);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
@ -46,4 +46,4 @@ class BillFormRequest extends Request
|
||||
|
||||
return $rules;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -37,4 +37,4 @@ class BudgetFormRequest extends Request
|
||||
'name' => $nameRule,
|
||||
];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -37,4 +37,4 @@ class CategoryFormRequest extends Request
|
||||
'name' => $nameRule,
|
||||
];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -42,4 +42,4 @@ class CurrencyFormRequest extends Request
|
||||
|
||||
return $rules;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -70,4 +70,4 @@ class JournalFormRequest extends Request
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -65,4 +65,4 @@ class PiggyBankFormRequest extends Request
|
||||
|
||||
return $rules;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -31,4 +31,4 @@ class ProfileFormRequest extends Request
|
||||
'new_password_confirmation' => 'required',
|
||||
];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -71,4 +71,4 @@ class FireflyServiceProvider extends ServiceProvider
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
@ -25,4 +25,4 @@ class TestingServiceProvider extends ServiceProvider
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
@ -452,4 +452,4 @@ class AccountRepository implements AccountRepositoryInterface
|
||||
|
||||
return $journal;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -85,4 +85,4 @@ interface AccountRepositoryInterface
|
||||
* @return Collection
|
||||
*/
|
||||
public function getSavingsAccounts();
|
||||
}
|
||||
}
|
||||
|
@ -56,4 +56,4 @@ interface BillRepositoryInterface {
|
||||
*/
|
||||
public function scan(Bill $bill, TransactionJournal $journal);
|
||||
|
||||
}
|
||||
}
|
||||
|
@ -142,4 +142,4 @@ class BudgetRepository implements BudgetRepositoryInterface
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -63,4 +63,4 @@ interface BudgetRepositoryInterface
|
||||
*/
|
||||
public function getJournals(Budget $budget, LimitRepetition $repetition = null, $take = 50);
|
||||
|
||||
}
|
||||
}
|
||||
|
@ -58,4 +58,4 @@ class CategoryRepository implements CategoryRepositoryInterface
|
||||
return $category;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
@ -33,4 +33,4 @@ interface CategoryRepositoryInterface
|
||||
*/
|
||||
public function update(Category $category, array $data);
|
||||
|
||||
}
|
||||
}
|
||||
|
@ -286,4 +286,4 @@ class JournalRepository implements JournalRepositoryInterface
|
||||
return $journal;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
@ -44,4 +44,4 @@ interface JournalRepositoryInterface
|
||||
* @return mixed
|
||||
*/
|
||||
public function update(TransactionJournal $journal, array $data);
|
||||
}
|
||||
}
|
||||
|
@ -162,4 +162,4 @@ class PiggyBankRepository implements PiggyBankRepositoryInterface
|
||||
|
||||
return $piggyBank;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -68,4 +68,4 @@ interface PiggyBankRepositoryInterface
|
||||
* @return PiggyBank
|
||||
*/
|
||||
public function update(PiggyBank $piggyBank, array $data);
|
||||
}
|
||||
}
|
||||
|
@ -166,4 +166,4 @@ class Amount
|
||||
|
||||
return $currency;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -314,4 +314,4 @@ class ExpandedForm
|
||||
return $html;
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -21,4 +21,4 @@ class Amount extends Facade
|
||||
return 'amount';
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
@ -21,4 +21,4 @@ class ExpandedForm extends Facade
|
||||
return 'expandedform';
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
@ -21,4 +21,4 @@ class Navigation extends Facade
|
||||
return 'navigation';
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
@ -21,4 +21,4 @@ class Preferences extends Facade
|
||||
return 'preferences';
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
@ -21,4 +21,4 @@ class Steam extends Facade
|
||||
return 'steam';
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
@ -457,4 +457,4 @@ class Navigation
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
@ -55,4 +55,4 @@ class Preferences
|
||||
return $pref;
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -45,4 +45,4 @@ interface SearchInterface {
|
||||
* @return Collection
|
||||
*/
|
||||
public function searchTransactions(array $words);
|
||||
}
|
||||
}
|
||||
|
@ -198,4 +198,4 @@ class Steam
|
||||
return $array;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
@ -593,4 +593,4 @@ class TestDataSeeder extends Seeder
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user