mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-12 15:35:15 +00:00
Add bills and piggy banks
This commit is contained in:
@@ -163,6 +163,14 @@ class ObjectGroupRepository implements ObjectGroupRepositoryInterface
|
||||
return $objectGroup->piggyBanks;
|
||||
}
|
||||
|
||||
/**
|
||||
* @inheritDoc
|
||||
*/
|
||||
public function getBills(ObjectGroup $objectGroup): Collection
|
||||
{
|
||||
return $objectGroup->bills;
|
||||
}
|
||||
|
||||
/**
|
||||
* @inheritDoc
|
||||
*/
|
||||
|
@@ -61,6 +61,13 @@ interface ObjectGroupRepositoryInterface
|
||||
*/
|
||||
public function getPiggyBanks(ObjectGroup $objectGroup): Collection;
|
||||
|
||||
/**
|
||||
* @param ObjectGroup $objectGroup
|
||||
*
|
||||
* @return Collection
|
||||
*/
|
||||
public function getBills(ObjectGroup $objectGroup): Collection;
|
||||
|
||||
/**
|
||||
* Sort
|
||||
*/
|
||||
|
Reference in New Issue
Block a user