mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-12-18 20:38:57 +00:00
Some new tests and fixes. [skip ci]
This commit is contained in:
@@ -8,7 +8,7 @@ interface BudgetRepositoryInterface
|
||||
public function getAsSelectList();
|
||||
public function get();
|
||||
|
||||
public function create($data);
|
||||
public function store($data);
|
||||
|
||||
public function find($id);
|
||||
|
||||
|
||||
@@ -18,7 +18,7 @@ class EloquentBudgetRepository implements BudgetRepositoryInterface
|
||||
return $return;
|
||||
}
|
||||
|
||||
public function create($data)
|
||||
public function store($data)
|
||||
{
|
||||
$budget = new \Budget;
|
||||
$budget->name = $data['name'];
|
||||
|
||||
Reference in New Issue
Block a user