formatting
This commit is contained in:
@ -1,12 +0,0 @@
|
||||
<?php
|
||||
|
||||
namespace App\Interfaces\Service;
|
||||
|
||||
use App\Models\Common\Contact;
|
||||
|
||||
interface DocumentNumberService
|
||||
{
|
||||
public function getNextDocumentNumber(string $type, ?Contact $contact): string;
|
||||
|
||||
public function increaseNextDocumentNumber(string $type, ?Contact $contact): void;
|
||||
}
|
12
app/Interfaces/Utility/DocumentNumber.php
Normal file
12
app/Interfaces/Utility/DocumentNumber.php
Normal file
@ -0,0 +1,12 @@
|
||||
<?php
|
||||
|
||||
namespace App\Interfaces\Utility;
|
||||
|
||||
use App\Models\Common\Contact;
|
||||
|
||||
interface DocumentNumber
|
||||
{
|
||||
public function getNextNumber(string $type, ?Contact $contact): string;
|
||||
|
||||
public function increaseNextNumber(string $type, ?Contact $contact): void;
|
||||
}
|
Reference in New Issue
Block a user