Add new line to files [skip ci]

This commit is contained in:
James Cole 2016-10-23 12:42:44 +02:00
parent 6a2f8fa9ee
commit 81f6fef978
15 changed files with 19 additions and 15 deletions

View File

@ -118,4 +118,4 @@ class UpgradeDatabase extends Command
} }
} }
} }
} }

View File

@ -57,10 +57,14 @@ class JournalCollector extends BasicCollector implements CollectorInterface
* possible category ids journals * possible category ids journals
* possible budget ids for transactions * possible budget ids for transactions
* possible category ids for transactions * possible category ids for transactions
*
* possible IBAN and account numbers?
*
*/ */
$journals = $this->extractJournalIds(); $journals = $this->extractJournalIds();
$transactions = $this->extractTransactionIds(); $transactions = $this->extractTransactionIds();
// extend work set with category data from journals: // extend work set with category data from journals:
$this->categoryDataForJournals($journals); $this->categoryDataForJournals($journals);
@ -341,4 +345,4 @@ class JournalCollector extends BasicCollector implements CollectorInterface
] ]
); );
} }
} }

View File

@ -107,4 +107,4 @@ class BudgetEventHandler
return true; return true;
} }
} }

View File

@ -121,4 +121,4 @@ class StoredJournalEventHandler
return true; return true;
} }
} }

View File

@ -125,4 +125,4 @@ class UpdatedJournalEventHandler
return true; return true;
} }
} }

View File

@ -222,4 +222,4 @@ class UserEventHandler
} }
} }

View File

@ -41,4 +41,4 @@ class AccountController extends Controller
return view('reports.partials.accounts', compact('accountReport')); return view('reports.partials.accounts', compact('accountReport'));
} }
} }

View File

@ -328,4 +328,4 @@ class SingleController extends Controller
} }
} }

View File

@ -58,4 +58,4 @@ class PresidentsChoice implements SpecificInterface
} }
} }

View File

@ -64,4 +64,4 @@ class Note extends Model
return $this->morphTo(); return $this->morphTo();
} }
} }

View File

@ -429,4 +429,4 @@ class AccountTasker implements AccountTaskerInterface
return $collection; return $collection;
} }
} }

View File

@ -96,4 +96,4 @@ interface AccountTaskerInterface
*/ */
public function incomeReport(Collection $accounts, Collection $excluded, Carbon $start, Carbon $end): Collection; public function incomeReport(Collection $accounts, Collection $excluded, Carbon $start, Carbon $end): Collection;
} }

View File

@ -290,4 +290,4 @@ class JournalTasker implements JournalTaskerInterface
return strval($sum); return strval($sum);
} }
} }

View File

@ -64,4 +64,4 @@ interface JournalTaskerInterface
* @return array * @return array
*/ */
public function getTransactionsOverview(TransactionJournal $journal): array; public function getTransactionsOverview(TransactionJournal $journal): array;
} }

View File

@ -363,4 +363,4 @@ class Transaction extends Twig_Extension
return ''; return '';
} }
} }