11 lines
214 B
PHP
11 lines
214 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Repositories;
|
|
|
|
interface InvoiceRepositoryInterface extends BaseRepositoryInterface
|
|
{
|
|
public function createFromQuote(int|string $quoteId): \App\Models\Invoice;
|
|
}
|