mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-07 06:33:57 -06:00
25 lines
406 B
PHP
25 lines
406 B
PHP
<?php
|
|
|
|
namespace Firefly\Helper\Controllers;
|
|
|
|
|
|
use Carbon\Carbon;
|
|
|
|
/**
|
|
* Interface CategoryInterface
|
|
*
|
|
* @package Firefly\Helper\Controllers
|
|
*/
|
|
interface CategoryInterface
|
|
{
|
|
|
|
|
|
/**
|
|
* @param \Category $category
|
|
* @param Carbon $start
|
|
* @param Carbon $end
|
|
*
|
|
* @return mixed
|
|
*/
|
|
public function journalsInRange(\Category $category, Carbon $start, Carbon $end);
|
|
}
|