firefly-iii/app/lib/Firefly/Storage/Component/ComponentRepositoryInterface.php

31 lines
412 B
PHP
Raw Normal View History

<?php
namespace Firefly\Storage\Component;
/**
* Interface ComponentRepositoryInterface
*
* @package Firefly\Storage\Component
*/
interface ComponentRepositoryInterface
{
/**
* @return mixed
*/
public function count();
/**
* @return mixed
*/
2014-07-14 23:58:08 -05:00
public function get();
/**
* @param $data
*
* @return mixed
*/
public function store($data);
}