* Sanctum removed * Unused middleware classes removed * Changed default email - Seeder * Models updated * Config .env is now smaller * Not used, so not used - Providers * Clearing your router of comments
21 lines
425 B
PHP
21 lines
425 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Providers;
|
|
|
|
use Illuminate\Support\ServiceProvider;
|
|
use App\Repository\CategoryRepository;
|
|
use App\Repository\Interfaces\CategoryRepository as CategoryRepositoryInterface;
|
|
|
|
class CategoryServiceProvider extends ServiceProvider
|
|
{
|
|
|
|
public function register()
|
|
{
|
|
$this->app
|
|
->bind(CategoryRepositoryInterface::class, CategoryRepository::class);
|
|
}
|
|
|
|
}
|