mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-11-16 22:58:09 +00:00
New lines at end of file [skip ci]
This commit is contained in:
@@ -91,4 +91,4 @@ interface AccountInterface
|
||||
* @return bool
|
||||
*/
|
||||
public function storeInitialBalance(\Account $account, array $data);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -139,4 +139,4 @@ class AccountType implements CUDInterface, CommonDatabaseCallsInterface
|
||||
// TODO: Implement getByIds() method.
|
||||
throw new NotImplementedException;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -309,4 +309,4 @@ class Bill implements CUDInterface, CommonDatabaseCallsInterface, BillInterface
|
||||
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -38,4 +38,4 @@ interface BillInterface
|
||||
*/
|
||||
public function scanEverything(\Bill $bill);
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -372,4 +372,4 @@ class Budget implements CUDInterface, CommonDatabaseCallsInterface, BudgetInterf
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -28,4 +28,4 @@ interface BudgetInterface
|
||||
*/
|
||||
public function transactionsWithoutBudgetInDateRange(Carbon $start, Carbon $end);
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -45,4 +45,4 @@ interface CUDInterface
|
||||
*/
|
||||
public function validate(array $model);
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -206,4 +206,4 @@ class Category implements CUDInterface, CommonDatabaseCallsInterface
|
||||
|
||||
return $sum;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -44,4 +44,4 @@ interface CommonDatabaseCallsInterface
|
||||
*/
|
||||
public function getByIds(array $objectIds);
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -59,4 +59,4 @@ class PiggyBank extends PiggyBankShared implements CUDInterface, CommonDatabaseC
|
||||
{
|
||||
return $this->getUser()->piggyBanks()->where('repeats', 0)->orderBy('name')->get();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -181,4 +181,4 @@ class PiggyBankShared
|
||||
return ['errors' => $errors, 'warnings' => $warnings, 'successes' => $successes];
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -16,4 +16,4 @@ interface PiggyBankInterface
|
||||
* @return float
|
||||
*/
|
||||
public function leftOnAccount(\Account $account);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -119,4 +119,4 @@ class RepeatedExpense extends PiggyBankShared implements CUDInterface, CommonDat
|
||||
return $this->getUser()->piggyBanks()->where('repeats', 1)->get();
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -24,4 +24,4 @@ trait SwitchUser
|
||||
{
|
||||
$this->_user = $user;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -144,4 +144,4 @@ class Transaction implements CUDInterface, CommonDatabaseCallsInterface
|
||||
// TODO: Implement getByIds() method.
|
||||
throw new NotImplementedException;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -149,4 +149,4 @@ class TransactionCurrency implements TransactionCurrencyInterface, CommonDatabas
|
||||
{
|
||||
return \TransactionCurrency::whereCode($code)->first();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -17,4 +17,4 @@ interface TransactionCurrencyInterface
|
||||
*/
|
||||
public function findByCode($code);
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -605,4 +605,4 @@ class TransactionJournal implements TransactionJournalInterface, CUDInterface, C
|
||||
|
||||
return $query;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -41,4 +41,4 @@ interface TransactionJournalInterface
|
||||
*/
|
||||
public function getSumOfIncomesByMonth(Carbon $date);
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
@@ -130,4 +130,4 @@ class TransactionType implements CUDInterface, CommonDatabaseCallsInterface
|
||||
// TODO: Implement getByIds() method.
|
||||
throw new NotImplementedException;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -70,4 +70,4 @@ class User
|
||||
return true;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user