style: Pint 포맷팅 적용
This commit is contained in:
@@ -46,11 +46,11 @@ public function run(): void
|
||||
'parent_id' => $aiGroup->id,
|
||||
'sort_order' => 1,
|
||||
]);
|
||||
$this->command->info("AI 설정 메뉴를 AI 관리 그룹으로 이동 완료");
|
||||
$this->command->info('AI 설정 메뉴를 AI 관리 그룹으로 이동 완료');
|
||||
} elseif (! $aiConfig) {
|
||||
$this->command->warn("AI 설정 메뉴가 존재하지 않습니다. (건너뜀)");
|
||||
$this->command->warn('AI 설정 메뉴가 존재하지 않습니다. (건너뜀)');
|
||||
} else {
|
||||
$this->command->info("AI 설정 메뉴가 이미 AI 관리 그룹에 있습니다.");
|
||||
$this->command->info('AI 설정 메뉴가 이미 AI 관리 그룹에 있습니다.');
|
||||
}
|
||||
|
||||
// 3. AI 토큰 사용량 메뉴 생성 또는 이동
|
||||
@@ -65,7 +65,7 @@ public function run(): void
|
||||
'parent_id' => $aiGroup->id,
|
||||
'sort_order' => 2,
|
||||
]);
|
||||
$this->command->info("AI 토큰 사용량 메뉴를 AI 관리 그룹으로 이동 완료");
|
||||
$this->command->info('AI 토큰 사용량 메뉴를 AI 관리 그룹으로 이동 완료');
|
||||
} elseif (! $aiToken) {
|
||||
Menu::withoutGlobalScopes()->create([
|
||||
'tenant_id' => $tenantId,
|
||||
@@ -76,9 +76,9 @@ public function run(): void
|
||||
'sort_order' => 2,
|
||||
'is_active' => true,
|
||||
]);
|
||||
$this->command->info("AI 토큰 사용량 메뉴 생성 완료");
|
||||
$this->command->info('AI 토큰 사용량 메뉴 생성 완료');
|
||||
} else {
|
||||
$this->command->info("AI 토큰 사용량 메뉴가 이미 AI 관리 그룹에 있습니다.");
|
||||
$this->command->info('AI 토큰 사용량 메뉴가 이미 AI 관리 그룹에 있습니다.');
|
||||
}
|
||||
|
||||
// 4. AI 음성녹음 메뉴 생성 또는 이동
|
||||
@@ -93,7 +93,7 @@ public function run(): void
|
||||
'parent_id' => $aiGroup->id,
|
||||
'sort_order' => 3,
|
||||
]);
|
||||
$this->command->info("AI 음성녹음 메뉴를 AI 관리 그룹으로 이동 완료");
|
||||
$this->command->info('AI 음성녹음 메뉴를 AI 관리 그룹으로 이동 완료');
|
||||
} elseif (! $aiVoice) {
|
||||
Menu::withoutGlobalScopes()->create([
|
||||
'tenant_id' => $tenantId,
|
||||
@@ -104,9 +104,9 @@ public function run(): void
|
||||
'sort_order' => 3,
|
||||
'is_active' => true,
|
||||
]);
|
||||
$this->command->info("AI 음성녹음 메뉴 생성 완료");
|
||||
$this->command->info('AI 음성녹음 메뉴 생성 완료');
|
||||
} else {
|
||||
$this->command->info("AI 음성녹음 메뉴가 이미 AI 관리 그룹에 있습니다.");
|
||||
$this->command->info('AI 음성녹음 메뉴가 이미 AI 관리 그룹에 있습니다.');
|
||||
}
|
||||
|
||||
// 결과 출력
|
||||
|
||||
Reference in New Issue
Block a user