mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
18 lines
265 B
PHP
18 lines
265 B
PHP
<?php
|
|
/**
|
|
* Created by PhpStorm.
|
|
* User: User
|
|
* Date: 30-7-14
|
|
* Time: 10:57
|
|
*/
|
|
|
|
namespace Firefly\Helper\Controllers;
|
|
|
|
|
|
use Carbon\Carbon;
|
|
|
|
interface CategoryInterface {
|
|
|
|
|
|
public function journalsInRange(\Category $category, Carbon $start, Carbon $end);
|
|
}
|