RprtCli/app/src/ValueObjects/WorkInvoiceElementInterface...

16 lines
262 B
PHP

<?php
declare(strict_types=1);
namespace RprtCli\ValueObjects;
interface WorkInvoiceElementInterface extends InvoiceElementInterface {
public function getTime() :float ;
/**
* Get project name.
*/
public function getName() :string ;
}