добавляю все изменения проекта на текущий момент

This commit is contained in:
vasya
2026-02-27 18:49:27 +03:00
parent e927910fda
commit 9c35f4e35e
303 changed files with 79434 additions and 2558 deletions
@@ -0,0 +1,29 @@
<?php
namespace Modules\Taxi\App\Providers;
use Illuminate\Support\ServiceProvider;
use Modules\Taxi\App\Services\TaxiMailerService;
class TaxiMailerProvider extends ServiceProvider
{
/**
* Register the service provider.
*/
public function register(): void
{
#Гаврилов
//ЗАЧЕМ В КАЧЕСТВЕ АРГУМЕНТА ПЕРЕЛАЕТСЯ $app?
$this->app->bind(TaxiMailerService::class, function($app) {
return new TaxiMailerService();
});
}
/**
* Get the services provided by the provider.
*/
public function provides(): array
{
return [];
}
}