23 lines
605 B
PHP
23 lines
605 B
PHP
<?php
|
|
|
|
namespace App\Providers;
|
|
|
|
use App\Interfaces\Utility\DocumentNumber as DocumentNumberInterface;
|
|
use App\Interfaces\Utility\TransactionNumber as TransactionNumberInterface;
|
|
use App\Utilities\DocumentNumber;
|
|
use App\Utilities\TransactionNumber;
|
|
use Illuminate\Support\ServiceProvider;
|
|
|
|
class Binding extends ServiceProvider
|
|
{
|
|
/**
|
|
* All container bindings that should be registered.
|
|
*
|
|
* @var array
|
|
*/
|
|
public array $bindings = [
|
|
DocumentNumberInterface::class => DocumentNumber::class,
|
|
TransactionNumberInterface::class => TransactionNumber::class,
|
|
];
|
|
}
|