mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-20 21:43:08 -06:00
31 lines
412 B
PHP
31 lines
412 B
PHP
<?php
|
|
|
|
|
|
namespace Firefly\Storage\Component;
|
|
|
|
/**
|
|
* Interface ComponentRepositoryInterface
|
|
*
|
|
* @package Firefly\Storage\Component
|
|
*/
|
|
interface ComponentRepositoryInterface
|
|
{
|
|
|
|
/**
|
|
* @return mixed
|
|
*/
|
|
public function count();
|
|
|
|
/**
|
|
* @return mixed
|
|
*/
|
|
public function get();
|
|
|
|
/**
|
|
* @param $data
|
|
*
|
|
* @return mixed
|
|
*/
|
|
public function store($data);
|
|
|
|
}
|