mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-29 18:20:01 +00:00
26 lines
376 B
PHP
26 lines
376 B
PHP
<?php
|
|
/**
|
|
* Created by PhpStorm.
|
|
* User: sander
|
|
* Date: 24/10/14
|
|
* Time: 10:28
|
|
*/
|
|
|
|
namespace FireflyIII\Database;
|
|
|
|
|
|
/**
|
|
* Interface TransactionTypeInterface
|
|
*
|
|
* @package FireflyIII\Database
|
|
*/
|
|
interface TransactionCurrencyInterface
|
|
{
|
|
/**
|
|
* @param string $code
|
|
*
|
|
* @return \TransactionCurrency|null
|
|
*/
|
|
public function findByCode($code);
|
|
|
|
}
|