RprtCli/app/src/ValueObjects/ExpensesInterface.php

12 lines
171 B
PHP

<?php
declare(strict_types=1);
namespace RprtCli\ValueObjects;
interface ExpensesInterface extends InvoiceElementInterface {
public function getValue() :float;
}