Skeleton is ready
This commit is contained in:
24
app/Providers/SharedService.php
Normal file
24
app/Providers/SharedService.php
Normal file
@@ -0,0 +1,24 @@
|
||||
<?php
|
||||
|
||||
namespace App\Providers;
|
||||
|
||||
use Illuminate\Support\ServiceProvider;
|
||||
|
||||
class SharedService extends ServiceProvider
|
||||
{
|
||||
/**
|
||||
* @var array<string,string>
|
||||
*/
|
||||
public array $bindings = [
|
||||
/** User repository */
|
||||
\App\Shared\Service\User\SearchByIdContract::class =>
|
||||
\App\Shared\Service\User\SearchById::class,
|
||||
];
|
||||
|
||||
/**
|
||||
* @var array<int,string>
|
||||
*/
|
||||
public array $singletons = [
|
||||
/** Singletons */
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user