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

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

View File

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

View File

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

View File

@@ -38,4 +38,4 @@ interface BillInterface
*/
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);
}
}

View File

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

View File

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

View File

@@ -44,4 +44,4 @@ interface CommonDatabaseCallsInterface
*/
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();
}
}
}

View File

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

View File

@@ -16,4 +16,4 @@ interface PiggyBankInterface
* @return float
*/
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();
}
}
}

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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