New lines at end of file [skip ci]

This commit is contained in:
James Cole 2015-01-02 06:16:49 +01:00
parent 24bdc319dd
commit 5c35fee0c2
213 changed files with 213 additions and 213 deletions

View File

@ -366,4 +366,4 @@ Breadcrumbs::register(
$breadcrumbs->push(e($journal->description), route('transactions.show', $journal->id)); $breadcrumbs->push(e($journal->description), route('transactions.show', $journal->id));
} }
); );

View File

@ -1,3 +1,3 @@
<?php <?php
return []; return [];

View File

@ -1,4 +1,4 @@
<?php <?php
return [ return [
'import' => '' 'import' => ''
]; ];

View File

@ -46,4 +46,4 @@ return [
'6M' => 'half-year', '6M' => 'half-year',
'custom' => 'monthly' 'custom' => 'monthly'
], ],
]; ];

View File

@ -12,4 +12,4 @@ return [
*/ */
'debug' => true, 'debug' => true,
'log_level' => 'debug', 'log_level' => 'debug',
]; ];

View File

@ -34,4 +34,4 @@ return [
], ],
]; ];

View File

@ -1,2 +1,2 @@
<?php <?php
return ['log_level' => 'debug',]; return ['log_level' => 'debug',];

View File

@ -9,4 +9,4 @@ return [
] ]
] ]
]; ];

View File

@ -1,2 +1,2 @@
<?php <?php
return ['log_level' => 'debug',]; return ['log_level' => 'debug',];

View File

@ -9,4 +9,4 @@ return [
] ]
] ]
]; ];

View File

@ -237,4 +237,4 @@ class AccountController extends BaseController
// go back to update screen. // go back to update screen.
return Redirect::route('accounts.edit', $account->id)->withInput(['post_submit_action' => 'return_to_edit']); return Redirect::route('accounts.edit', $account->id)->withInput(['post_submit_action' => 'return_to_edit']);
} }
} }

View File

@ -202,4 +202,4 @@ class BillController extends BaseController
return Redirect::route('bills.edit', $bill->id)->withInput(['post_submit_action' => 'return_to_edit']); return Redirect::route('bills.edit', $bill->id)->withInput(['post_submit_action' => 'return_to_edit']);
} }
} }

View File

@ -169,4 +169,4 @@ class CategoryController extends BaseController
} }
} }

View File

@ -194,4 +194,4 @@ class CurrencyController extends BaseController
} }
} }

View File

@ -491,4 +491,4 @@ class GoogleChartController extends BaseController
return Response::json($this->_chart->getData()); return Response::json($this->_chart->getData());
} }
} }

View File

@ -51,4 +51,4 @@ class HelpController extends BaseController
return Response::json(['title' => $helpTitle, 'text' => $helpText]); return Response::json(['title' => $helpTitle, 'text' => $helpText]);
} }
} }

View File

@ -99,4 +99,4 @@ class HomeController extends BaseController
return Redirect::intended('/'); return Redirect::intended('/');
} }
} }

View File

@ -62,4 +62,4 @@ class JsonController extends BaseController
return Response::json($return); return Response::json($return);
} }
} }

View File

@ -353,4 +353,4 @@ class PiggyBankController extends BaseController
return Redirect::route('piggy_banks.edit', $piggyBank->id)->withInput(['post_submit_action' => 'return_to_edit']); return Redirect::route('piggy_banks.edit', $piggyBank->id)->withInput(['post_submit_action' => 'return_to_edit']);
} }
} }

View File

@ -73,4 +73,4 @@ class PreferencesController extends BaseController
return Redirect::route('preferences'); return Redirect::route('preferences');
} }
} }

View File

@ -66,4 +66,4 @@ class ProfileController extends BaseController
return Redirect::route('profile'); return Redirect::route('profile');
} }
} }

View File

@ -90,4 +90,4 @@ class ReminderController extends BaseController
return View::make('reminders.show', compact('reminder', 'amount')); return View::make('reminders.show', compact('reminder', 'amount'));
} }
} }

View File

@ -224,4 +224,4 @@ class RepeatedExpenseController extends BaseController
return Redirect::route('repeated.edit', $repeatedExpense->id)->withInput(['post_submit_action' => 'return_to_edit']); return Redirect::route('repeated.edit', $repeatedExpense->id)->withInput(['post_submit_action' => 'return_to_edit']);
} }
} }

View File

@ -130,4 +130,4 @@ class ReportController extends BaseController
); );
} }
} }

View File

@ -35,4 +35,4 @@ class SearchController extends BaseController
'mainTitleIcon', 'fa-search' 'mainTitleIcon', 'fa-search'
)->with('query', $rawQuery)->with('result', $result); )->with('query', $rawQuery)->with('result', $result);
} }
} }

View File

@ -473,4 +473,4 @@ class TransactionController extends BaseController
} }
} }

View File

@ -161,4 +161,4 @@ class UserController extends BaseController
return View::make('error')->with('message', 'No reset code found!'); return View::make('error')->with('message', 'No reset code found!');
} }
} }

View File

@ -38,4 +38,4 @@ class AccountTypeSeeder extends Seeder
} }
} }

View File

@ -19,4 +19,4 @@ class DefaultUserSeeder extends Seeder
} }
} }

View File

@ -558,4 +558,4 @@ class TestContentSeeder extends Seeder
$group->transactionjournals()->save($one); $group->transactionjournals()->save($one);
$group->transactionjournals()->save($two); $group->transactionjournals()->save($two);
} }
} }

View File

@ -15,4 +15,4 @@ class TransactionCurrencySeeder extends Seeder
TransactionCurrency::create(['code' => 'HUF','name' => 'Hungarian forint','symbol' => 'Ft']); TransactionCurrency::create(['code' => 'HUF','name' => 'Hungarian forint','symbol' => 'Ft']);
} }
} }

View File

@ -17,4 +17,4 @@ class TransactionTypeSeeder extends Seeder
TransactionType::create(['type' => 'Opening balance']); TransactionType::create(['type' => 'Opening balance']);
} }
} }

View File

@ -72,4 +72,4 @@ class Chart implements ChartInterface
'transactions.amount AS actualAmount'] 'transactions.amount AS actualAmount']
); );
} }
} }

View File

@ -28,4 +28,4 @@ interface ChartInterface
*/ */
public function getBillsSummary(Carbon $start, Carbon $end); public function getBillsSummary(Carbon $start, Carbon $end);
} }

View File

@ -176,4 +176,4 @@ class PiggyBankPart
} }
} }

View File

@ -91,4 +91,4 @@ interface AccountInterface
* @return bool * @return bool
*/ */
public function storeInitialBalance(\Account $account, array $data); public function storeInitialBalance(\Account $account, array $data);
} }

View File

@ -139,4 +139,4 @@ class AccountType implements CUDInterface, CommonDatabaseCallsInterface
// TODO: Implement getByIds() method. // TODO: Implement getByIds() method.
throw new NotImplementedException; throw new NotImplementedException;
} }
} }

View File

@ -309,4 +309,4 @@ class Bill implements CUDInterface, CommonDatabaseCallsInterface, BillInterface
return true; return true;
} }
} }

View File

@ -38,4 +38,4 @@ interface BillInterface
*/ */
public function scanEverything(\Bill $bill); public function scanEverything(\Bill $bill);
} }

View File

@ -372,4 +372,4 @@ class Budget implements CUDInterface, CommonDatabaseCallsInterface, BudgetInterf
} }
} }

View File

@ -28,4 +28,4 @@ interface BudgetInterface
*/ */
public function transactionsWithoutBudgetInDateRange(Carbon $start, Carbon $end); public function transactionsWithoutBudgetInDateRange(Carbon $start, Carbon $end);
} }

View File

@ -45,4 +45,4 @@ interface CUDInterface
*/ */
public function validate(array $model); public function validate(array $model);
} }

View File

@ -206,4 +206,4 @@ class Category implements CUDInterface, CommonDatabaseCallsInterface
return $sum; return $sum;
} }
} }

View File

@ -44,4 +44,4 @@ interface CommonDatabaseCallsInterface
*/ */
public function getByIds(array $objectIds); public function getByIds(array $objectIds);
} }

View File

@ -59,4 +59,4 @@ class PiggyBank extends PiggyBankShared implements CUDInterface, CommonDatabaseC
{ {
return $this->getUser()->piggyBanks()->where('repeats', 0)->orderBy('name')->get(); return $this->getUser()->piggyBanks()->where('repeats', 0)->orderBy('name')->get();
} }
} }

View File

@ -181,4 +181,4 @@ class PiggyBankShared
return ['errors' => $errors, 'warnings' => $warnings, 'successes' => $successes]; return ['errors' => $errors, 'warnings' => $warnings, 'successes' => $successes];
} }
} }

View File

@ -16,4 +16,4 @@ interface PiggyBankInterface
* @return float * @return float
*/ */
public function leftOnAccount(\Account $account); public function leftOnAccount(\Account $account);
} }

View File

@ -119,4 +119,4 @@ class RepeatedExpense extends PiggyBankShared implements CUDInterface, CommonDat
return $this->getUser()->piggyBanks()->where('repeats', 1)->get(); return $this->getUser()->piggyBanks()->where('repeats', 1)->get();
} }
} }

View File

@ -24,4 +24,4 @@ trait SwitchUser
{ {
$this->_user = $user; $this->_user = $user;
} }
} }

View File

@ -144,4 +144,4 @@ class Transaction implements CUDInterface, CommonDatabaseCallsInterface
// TODO: Implement getByIds() method. // TODO: Implement getByIds() method.
throw new NotImplementedException; throw new NotImplementedException;
} }
} }

View File

@ -149,4 +149,4 @@ class TransactionCurrency implements TransactionCurrencyInterface, CommonDatabas
{ {
return \TransactionCurrency::whereCode($code)->first(); return \TransactionCurrency::whereCode($code)->first();
} }
} }

View File

@ -17,4 +17,4 @@ interface TransactionCurrencyInterface
*/ */
public function findByCode($code); public function findByCode($code);
} }

View File

@ -605,4 +605,4 @@ class TransactionJournal implements TransactionJournalInterface, CUDInterface, C
return $query; return $query;
} }
} }

View File

@ -41,4 +41,4 @@ interface TransactionJournalInterface
*/ */
public function getSumOfIncomesByMonth(Carbon $date); public function getSumOfIncomesByMonth(Carbon $date);
} }

View File

@ -130,4 +130,4 @@ class TransactionType implements CUDInterface, CommonDatabaseCallsInterface
// TODO: Implement getByIds() method. // TODO: Implement getByIds() method.
throw new NotImplementedException; throw new NotImplementedException;
} }
} }

View File

@ -70,4 +70,4 @@ class User
return true; return true;
} }
} }

View File

@ -50,4 +50,4 @@ class Account
\Cache::forget('account.' . $account->id . '.latestBalance'); \Cache::forget('account.' . $account->id . '.latestBalance');
\Cache::forget('account.' . $account->id . '.lastActivityDate'); \Cache::forget('account.' . $account->id . '.lastActivityDate');
} }
} }

View File

@ -64,4 +64,4 @@ class Budget
$events->listen('limits.update', 'FireflyIII\Event\Budget@storeOrUpdateLimit'); $events->listen('limits.update', 'FireflyIII\Event\Budget@storeOrUpdateLimit');
} }
} }

View File

@ -42,4 +42,4 @@ class Event
// triggers when others are updated. // triggers when others are updated.
$events->listen('account.destroy', 'FireflyIII\Event\Event@deleteAccount'); $events->listen('account.destroy', 'FireflyIII\Event\Event@deleteAccount');
} }
} }

View File

@ -292,4 +292,4 @@ class PiggyBank
} }
} }
} }

View File

@ -52,4 +52,4 @@ class Transaction
\Cache::forget('account.' . $transaction->account_id . '.latestBalance'); \Cache::forget('account.' . $transaction->account_id . '.latestBalance');
\Cache::forget('account.' . $transaction->account_id . '.lastActivityDate'); \Cache::forget('account.' . $transaction->account_id . '.lastActivityDate');
} }
} }

View File

@ -54,4 +54,4 @@ class TransactionJournal
$repository->scan($entry, $journal); $repository->scan($entry, $journal);
} }
} }
} }

View File

@ -11,4 +11,4 @@ namespace FireflyIII\Exception;
class FireflyException extends \Exception class FireflyException extends \Exception
{ {
} }

View File

@ -10,4 +10,4 @@ namespace FireflyIII\Exception;
class NotImplementedException extends \Exception class NotImplementedException extends \Exception
{ {
} }

View File

@ -9,4 +9,4 @@ namespace FireflyIII\Exception;
class ValidationException extends \Exception class ValidationException extends \Exception
{ {
} }

View File

@ -118,4 +118,4 @@ class FF3ServiceProvider extends ServiceProvider
); );
} }
} }

View File

@ -379,4 +379,4 @@ class Form
return self::ffInput('text', $name, $value, $options); return self::ffInput('text', $name, $value, $options);
} }
} }

View File

@ -90,4 +90,4 @@ class Helper implements HelperInterface
} }
} }

View File

@ -49,4 +49,4 @@ interface HelperInterface
*/ */
public function getRepeatedExpenses(); public function getRepeatedExpenses();
} }

View File

@ -442,4 +442,4 @@ class Report implements ReportInterface
return $report; return $report;
} }
} }

View File

@ -139,4 +139,4 @@ class ReportHelper implements ReportHelperInterface
return $array; return $array;
} }
} }

View File

@ -61,4 +61,4 @@ interface ReportHelperInterface
*/ */
public function sortNegativeArray(array $array); public function sortNegativeArray(array $array);
} }

View File

@ -106,4 +106,4 @@ interface ReportInterface
* @return array * @return array
*/ */
public function yearBalanceReport(Carbon $date); public function yearBalanceReport(Carbon $date);
} }

View File

@ -401,4 +401,4 @@ class ReportQuery implements ReportQueryInterface
] ]
); );
} }
} }

View File

@ -130,4 +130,4 @@ interface ReportQueryInterface
*/ */
public function sharedExpensesByCategory(Carbon $start, Carbon $end); public function sharedExpensesByCategory(Carbon $start, Carbon $end);
} }

View File

@ -104,4 +104,4 @@ class Search
} }
)->get(); )->get();
} }
} }

View File

@ -21,4 +21,4 @@ class DateKit extends Facade
return 'datekit'; return 'datekit';
} }
} }

View File

@ -21,4 +21,4 @@ class FFForm extends Facade
return 'ffform'; return 'ffform';
} }
} }

View File

@ -21,4 +21,4 @@ class Filter extends Facade
return 'filter'; return 'filter';
} }
} }

View File

@ -21,4 +21,4 @@ class Navigation extends Facade
return 'navigation'; return 'navigation';
} }
} }

View File

@ -21,4 +21,4 @@ class Reminders extends Facade
return 'reminders'; return 'reminders';
} }
} }

View File

@ -21,4 +21,4 @@ class Steam extends Facade
return 'steam'; return 'steam';
} }
} }

View File

@ -87,4 +87,4 @@ class Registration implements RegistrationInterface
} }
} }
} }

View File

@ -31,4 +31,4 @@ interface RegistrationInterface
*/ */
public function sendVerificationMail(\User $user); public function sendVerificationMail(\User $user);
} }

View File

@ -51,4 +51,4 @@ class Preferences implements PreferencesInterface
return $pref; return $pref;
} }
} }

View File

@ -26,4 +26,4 @@ interface PreferencesInterface
*/ */
public function set($name, $value); public function set($name, $value);
} }

View File

@ -266,4 +266,4 @@ class Filter
return $date; return $date;
} }
} }

View File

@ -42,4 +42,4 @@ class Form
return $selectList; return $selectList;
} }
} }

View File

@ -66,4 +66,4 @@ class Navigation
return true; return true;
} }
} }

View File

@ -98,4 +98,4 @@ class Reminders
} }
} }
} }
} }

View File

@ -59,4 +59,4 @@ class Steam
} }
} }
} }

View File

@ -26,4 +26,4 @@ class FireflyValidator extends Validator
return true; return true;
} }
} }
} }

View File

@ -24,4 +24,4 @@ class ValidationServiceProvider extends ServiceProvider
public function register() public function register()
{ {
} }
} }

View File

@ -141,4 +141,4 @@ class Account extends Eloquent
} }
} }

View File

@ -48,4 +48,4 @@ class AccountMeta extends Eloquent
$this->attributes['data'] = json_encode($value); $this->attributes['data'] = json_encode($value);
} }
} }

View File

@ -22,4 +22,4 @@ class AccountType extends Eloquent
{ {
return $this->hasMany('Account'); return $this->hasMany('Account');
} }
} }

View File

@ -114,4 +114,4 @@ class Bill extends Eloquent
{ {
return $this->belongsTo('User'); return $this->belongsTo('User');
} }
} }

View File

@ -47,4 +47,4 @@ class Budget extends Eloquent
return $this->belongsTo('User'); return $this->belongsTo('User');
} }
} }

View File

@ -49,4 +49,4 @@ class BudgetLimit extends Eloquent
} }
} }

View File

@ -46,4 +46,4 @@ class Category extends Eloquent
{ {
return $this->belongsTo('User'); return $this->belongsTo('User');
} }
} }

Some files were not shown because too many files have changed in this diff Show More