mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-21 03:39:00 +00:00
14 lines
156 B
PHP
14 lines
156 B
PHP
![]() |
<?php
|
||
|
|
||
|
|
||
|
namespace Firefly\Storage\Component;
|
||
|
|
||
|
|
||
|
interface ComponentRepositoryInterface
|
||
|
{
|
||
|
|
||
|
public function count();
|
||
|
|
||
|
public function store($data);
|
||
|
|
||
|
}
|