Cleaned up some todo entries [skip ci]

This commit is contained in:
James Cole
2015-01-02 10:01:33 +01:00
parent a6dbd912c6
commit fb58bf1bf5
16 changed files with 3 additions and 268 deletions

View File

@@ -25,7 +25,6 @@ class AccountType implements CUDInterface, CommonDatabaseCallsInterface
*/
public function destroy(Eloquent $model)
{
// TODO: Implement destroy() method.
throw new NotImplementedException;
}
@@ -37,7 +36,6 @@ class AccountType implements CUDInterface, CommonDatabaseCallsInterface
*/
public function store(array $data)
{
// TODO: Implement store() method.
throw new NotImplementedException;
}
@@ -50,7 +48,6 @@ class AccountType implements CUDInterface, CommonDatabaseCallsInterface
*/
public function update(Eloquent $model, array $data)
{
// TODO: Implement update() method.
throw new NotImplementedException;
}
@@ -65,7 +62,6 @@ class AccountType implements CUDInterface, CommonDatabaseCallsInterface
*/
public function validate(array $model)
{
// TODO: Implement validate() method.
throw new NotImplementedException;
}
@@ -79,7 +75,6 @@ class AccountType implements CUDInterface, CommonDatabaseCallsInterface
*/
public function find($objectId)
{
// TODO: Implement find() method.
throw new NotImplementedException;
}
@@ -124,7 +119,6 @@ class AccountType implements CUDInterface, CommonDatabaseCallsInterface
*/
public function get()
{
// TODO: Implement get() method.
throw new NotImplementedException;
}
@@ -136,7 +130,6 @@ class AccountType implements CUDInterface, CommonDatabaseCallsInterface
*/
public function getByIds(array $ids)
{
// TODO: Implement getByIds() method.
throw new NotImplementedException;
}
}

View File

@@ -142,7 +142,6 @@ class Bill implements CUDInterface, CommonDatabaseCallsInterface, BillInterface
*/
public function find($objectId)
{
// TODO: Implement find() method.
throw new NotImplementedException;
}
@@ -156,7 +155,6 @@ class Bill implements CUDInterface, CommonDatabaseCallsInterface, BillInterface
*/
public function findByWhat($what)
{
// TODO: Implement findByWhat() method.
throw new NotImplementedException;
}
@@ -178,7 +176,6 @@ class Bill implements CUDInterface, CommonDatabaseCallsInterface, BillInterface
*/
public function getByIds(array $ids)
{
// TODO: Implement getByIds() method.
throw new NotImplementedException;
}

View File

@@ -119,7 +119,6 @@ class Budget implements CUDInterface, CommonDatabaseCallsInterface, BudgetInterf
*/
public function findByWhat($what)
{
// TODO: Implement findByWhat() method.
throw new NotImplementedException;
}
@@ -143,7 +142,6 @@ class Budget implements CUDInterface, CommonDatabaseCallsInterface, BudgetInterf
*/
public function getByIds(array $ids)
{
// TODO: Implement getByIds() method.
throw new NotImplementedException;
}
@@ -335,7 +333,7 @@ class Budget implements CUDInterface, CommonDatabaseCallsInterface, BudgetInterf
$limit->amount = $amount;
$limit->repeat_freq = 'monthly';
$limit->repeats = 0;
$result = $limit->save();
$limit->save();
\Log::info('ID: ' . $limit->id);
/*
* A newly stored limit also created a limit repetition.

View File

@@ -108,7 +108,6 @@ class Category implements CUDInterface, CommonDatabaseCallsInterface
*/
public function find($objectId)
{
// TODO: Implement find() method.
throw new NotImplementedException;
}
@@ -122,7 +121,6 @@ class Category implements CUDInterface, CommonDatabaseCallsInterface
*/
public function findByWhat($what)
{
// TODO: Implement findByWhat() method.
throw new NotImplementedException;
}
@@ -144,7 +142,6 @@ class Category implements CUDInterface, CommonDatabaseCallsInterface
*/
public function getByIds(array $ids)
{
// TODO: Implement getByIds() method.
throw new NotImplementedException;
}

View File

@@ -67,7 +67,6 @@ class PiggyBankShared
*/
public function findByWhat($what)
{
// TODO: Implement findByWhat() method.
throw new NotImplementedException;
}

View File

@@ -28,7 +28,6 @@ class Transaction implements CUDInterface, CommonDatabaseCallsInterface
*/
public function destroy(Eloquent $model)
{
// TODO: Implement destroy() method.
throw new NotImplementedException;
}
@@ -68,7 +67,6 @@ class Transaction implements CUDInterface, CommonDatabaseCallsInterface
*/
public function update(Eloquent $model, array $data)
{
// TODO: Implement update() method.
throw new NotImplementedException;
}
@@ -103,7 +101,6 @@ class Transaction implements CUDInterface, CommonDatabaseCallsInterface
*/
public function find($objectId)
{
// TODO: Implement find() method.
throw new NotImplementedException;
}
@@ -117,7 +114,6 @@ class Transaction implements CUDInterface, CommonDatabaseCallsInterface
*/
public function findByWhat($what)
{
// TODO: Implement findByWhat() method.
throw new NotImplementedException;
}
@@ -129,7 +125,6 @@ class Transaction implements CUDInterface, CommonDatabaseCallsInterface
*/
public function get()
{
// TODO: Implement get() method.
throw new NotImplementedException;
}
@@ -141,7 +136,6 @@ class Transaction implements CUDInterface, CommonDatabaseCallsInterface
*/
public function getByIds(array $ids)
{
// TODO: Implement getByIds() method.
throw new NotImplementedException;
}
}

View File

@@ -98,7 +98,6 @@ class TransactionCurrency implements TransactionCurrencyInterface, CommonDatabas
*/
public function find($objectId)
{
// TODO: Implement find() method.
throw new NotImplementedException;
}
@@ -112,7 +111,6 @@ class TransactionCurrency implements TransactionCurrencyInterface, CommonDatabas
*/
public function findByWhat($what)
{
// TODO: Implement findByWhat() method.
throw new NotImplementedException;
}
@@ -134,7 +132,6 @@ class TransactionCurrency implements TransactionCurrencyInterface, CommonDatabas
*/
public function getByIds(array $objectIds)
{
// TODO: Implement getByIds() method.
throw new NotImplementedException;
}

View File

@@ -390,7 +390,6 @@ class TransactionJournal implements TransactionJournalInterface, CUDInterface, C
*/
public function findByWhat($what)
{
// TODO: Implement findByWhat() method.
throw new NotImplementedException;
}

View File

@@ -27,7 +27,6 @@ class TransactionType implements CUDInterface, CommonDatabaseCallsInterface
*/
public function destroy(Eloquent $model)
{
// TODO: Implement destroy() method.
throw new NotImplementedException;
}
@@ -39,7 +38,6 @@ class TransactionType implements CUDInterface, CommonDatabaseCallsInterface
*/
public function store(array $data)
{
// TODO: Implement store() method.
throw new NotImplementedException;
}
@@ -52,7 +50,6 @@ class TransactionType implements CUDInterface, CommonDatabaseCallsInterface
*/
public function update(Eloquent $model, array $data)
{
// TODO: Implement update() method.
throw new NotImplementedException;
}
@@ -67,7 +64,6 @@ class TransactionType implements CUDInterface, CommonDatabaseCallsInterface
*/
public function validate(array $model)
{
// TODO: Implement validate() method.
throw new NotImplementedException;
}
@@ -81,7 +77,6 @@ class TransactionType implements CUDInterface, CommonDatabaseCallsInterface
*/
public function find($objectId)
{
// TODO: Implement find() method.
throw new NotImplementedException;
}
@@ -115,7 +110,6 @@ class TransactionType implements CUDInterface, CommonDatabaseCallsInterface
*/
public function get()
{
// TODO: Implement get() method.
throw new NotImplementedException;
}
@@ -127,7 +121,6 @@ class TransactionType implements CUDInterface, CommonDatabaseCallsInterface
*/
public function getByIds(array $ids)
{
// TODO: Implement getByIds() method.
throw new NotImplementedException;
}
}