First commit for project

This commit is contained in:
2022-02-13 11:19:29 +01:00
commit d9c8d55505
106 changed files with 47789 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
<?php
namespace App\Providers;
use Illuminate\Support\ServiceProvider;
use App\Repository\CategoryRepository;
use App\Repository\Interfaces\CategoryRepository as CategoryRepositoryInterface;
class CategoryServiceProvider extends ServiceProvider
{
/**
* Register services.
*
* @return void
*/
public function register()
{
$this->app
->bind(CategoryRepositoryInterface::class, CategoryRepository::class);
}
}