mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-11-09 11:18:10 +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);
|
||
|
|
|
||
|
|
}
|