mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-12-19 04:49:30 +00:00
16 lines
201 B
PHP
16 lines
201 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace FireflyIII\Database;
|
||
|
|
|
||
|
|
use Carbon\Carbon;
|
||
|
|
use Illuminate\Support\Collection;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Interface CategoryInterface
|
||
|
|
*
|
||
|
|
* @package FireflyIII\Database
|
||
|
|
*/
|
||
|
|
interface CategoryInterface
|
||
|
|
{
|
||
|
|
|
||
|
|
}
|