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

@@ -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;
}
}