mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-10-02 02:18:20 +00:00
19 lines
299 B
PHP
19 lines
299 B
PHP
<?php
|
|
|
|
namespace Firefly\Storage\Transaction;
|
|
|
|
/**
|
|
* Interface TransactionRepositoryInterface
|
|
*
|
|
* @package Firefly\Storage\Transaction
|
|
*/
|
|
interface TransactionRepositoryInterface
|
|
{
|
|
/**
|
|
* @param \User $user
|
|
* @return mixed
|
|
*/
|
|
public function overruleUser(\User $user);
|
|
|
|
|
|
}
|