Remapped all library classes.

This commit is contained in:
James Cole
2014-12-13 22:11:51 +01:00
parent 3cfa3f3b27
commit 21a0a5d573
23 changed files with 241 additions and 293 deletions

View File

@@ -0,0 +1,20 @@
<?php
namespace FireflyIII\Database\TransactionCurrency;
/**
* Interface TransactionTypeInterface
*
* @package FireflyIII\Database
*/
interface TransactionCurrencyInterface
{
/**
* @param string $code
*
* @return \TransactionCurrency|null
*/
public function findByCode($code);
}