mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-12-31 19:27:51 -06:00
33 lines
617 B
PHP
33 lines
617 B
PHP
|
<?php
|
||
|
/**
|
||
|
* RuleRepositoryInterface.php
|
||
|
* Copyright (C) 2016 Sander Dorigo
|
||
|
*
|
||
|
* This software may be modified and distributed under the terms
|
||
|
* of the MIT license. See the LICENSE file for details.
|
||
|
*/
|
||
|
|
||
|
namespace FireflyIII\Repositories\Rule;
|
||
|
|
||
|
use FireflyIII\Models\RuleGroup;
|
||
|
|
||
|
/**
|
||
|
* Interface RuleRepositoryInterface
|
||
|
*
|
||
|
* @package FireflyIII\Repositories\Rule
|
||
|
*/
|
||
|
interface RuleRepositoryInterface
|
||
|
{
|
||
|
/**
|
||
|
* @param array $data
|
||
|
*
|
||
|
* @return RuleGroup
|
||
|
*/
|
||
|
public function storeRuleGroup(array $data);
|
||
|
|
||
|
/**
|
||
|
* @return int
|
||
|
*/
|
||
|
public function getHighestOrderRuleGroup();
|
||
|
|
||
|
}
|