17 lines
262 B
PHP
17 lines
262 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use App\Models\Currency;
|
|
|
|
if (! function_exists('currency')) {
|
|
|
|
// /**
|
|
// * Returns an instance of the currency model
|
|
// * */
|
|
// function currency(): Currency
|
|
// {
|
|
// return new Currency;
|
|
// }
|
|
}
|