2023-07-16 19:21:09 +06:00
|
|
|
<?php declare(strict_types=1);
|
|
|
|
|
|
|
|
namespace App\Services\Role;
|
|
|
|
|
|
|
|
use App\Dto\Builder\Role as RoleBuilderDto;
|
|
|
|
use Illuminate\Database\Eloquent\Builder;
|
|
|
|
use Illuminate\Database\Eloquent\Relations\Relation;
|
|
|
|
|
2023-08-01 23:43:03 +06:00
|
|
|
final readonly class BuilderCommand
|
2023-07-16 19:21:09 +06:00
|
|
|
{
|
|
|
|
public function execute(Relation | Builder $query, RoleBuilderDto $roleBuilderDto): Relation | Builder
|
|
|
|
{
|
|
|
|
return $query;
|
|
|
|
}
|
|
|
|
}
|