Moved some stuff around.

This commit is contained in:
Sander Dorigo
2014-10-30 19:26:28 +01:00
parent f0c0002a6d
commit 2d5b0d0f99
24 changed files with 75 additions and 108 deletions

View File

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