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