🤖 Auto commit for release 'develop' on 2026-02-22

This commit is contained in:
JC5
2026-02-22 07:20:07 +01:00
parent 81f6f22efb
commit defaef171e
7 changed files with 93 additions and 82 deletions

View File

@@ -47,15 +47,17 @@ use Illuminate\Support\Collection;
*/
interface JournalRepositoryInterface
{
public function countByDescription(string $value, bool $includeDeleted): int;
public function countByMeta(string $field, string $value, bool $includeDeleted): int;
public function countByNotes(string $value, bool $includeDeleted): int;
/**
* Deletes a transaction group.
*/
public function destroyGroup(TransactionGroup $transactionGroup): void;
public function countByMeta(string $field, string $value, bool $includeDeleted): int;
public function countByNotes(string $value, bool $includeDeleted): int;
public function countByDescription(string $value, bool $includeDeleted): int;
/**
* Deletes a journal.
*/