decouple document number generation
This commit is contained in:
19
app/Providers/Service.php
Normal file
19
app/Providers/Service.php
Normal file
@ -0,0 +1,19 @@
|
||||
<?php
|
||||
|
||||
namespace App\Providers;
|
||||
|
||||
use App\Interfaces\Service\DocumentNumberService;
|
||||
use App\Services\Document\CoreDocumentNumberService;
|
||||
use Illuminate\Support\ServiceProvider;
|
||||
|
||||
class Service extends ServiceProvider
|
||||
{
|
||||
/**
|
||||
* All container bindings that should be registered.
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
public array $bindings = [
|
||||
DocumentNumberService::class => CoreDocumentNumberService::class,
|
||||
];
|
||||
}
|
Reference in New Issue
Block a user