mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-21 19:47:48 +00:00
16 lines
184 B
PHP
16 lines
184 B
PHP
<?php
|
|
|
|
|
|
namespace Firefly\Storage\Component;
|
|
|
|
|
|
interface ComponentRepositoryInterface
|
|
{
|
|
|
|
public function count();
|
|
|
|
public function get();
|
|
|
|
public function store($data);
|
|
|
|
}
|