mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-08 23:24:07 -06:00
20 lines
302 B
PHP
20 lines
302 B
PHP
<?php
|
|
|
|
namespace FireflyIII\Database\Ifaces;
|
|
|
|
|
|
/**
|
|
* Interface TransactionTypeInterface
|
|
*
|
|
* @package FireflyIII\Database
|
|
*/
|
|
interface TransactionCurrencyInterface
|
|
{
|
|
/**
|
|
* @param string $code
|
|
*
|
|
* @return \TransactionCurrency|null
|
|
*/
|
|
public function findByCode($code);
|
|
|
|
}
|