style: Laravel Pint 코드 포맷팅 적용
- PSR-12 스타일 가이드 준수 - 302개 파일 스타일 이슈 자동 수정 - 코드 로직 변경 없음 (포맷팅만)
This commit is contained in:
@@ -11,11 +11,11 @@
|
||||
return [
|
||||
|
||||
// 4xx Common
|
||||
'not_found' => 'The requested URI or data was not found.', // 404
|
||||
'tenant_id' => 'No active tenant is set.', // 400 (Service::tenantId() missing)
|
||||
'unauthenticated' => 'Authentication failed.', // 401
|
||||
'forbidden' => 'You do not have permission for this request.', // 403
|
||||
'bad_request' => 'Invalid request.', // 400
|
||||
'not_found' => 'The requested URI or data was not found.', // 404
|
||||
'tenant_id' => 'No active tenant is set.', // 400 (Service::tenantId() missing)
|
||||
'unauthenticated' => 'Authentication failed.', // 401
|
||||
'forbidden' => 'You do not have permission for this request.', // 403
|
||||
'bad_request' => 'Invalid request.', // 400
|
||||
|
||||
// Validation / Parameters
|
||||
'validation_failed' => 'Request data validation failed.', // 422
|
||||
@@ -25,12 +25,12 @@
|
||||
'not_found_resource' => ':resource could not be found.', // 404
|
||||
|
||||
// Business rules
|
||||
'duplicate' => 'Duplicate data exists.',
|
||||
'conflict' => 'The request conflicts with the current state.', // 409
|
||||
'state_invalid' => 'The current state does not allow this operation.', // 400/409
|
||||
'duplicate' => 'Duplicate data exists.',
|
||||
'conflict' => 'The request conflicts with the current state.', // 409
|
||||
'state_invalid' => 'The current state does not allow this operation.', // 400/409
|
||||
|
||||
// Server errors
|
||||
'server_error' => 'An internal server error occurred.', // 5xx
|
||||
'server_error' => 'An internal server error occurred.', // 5xx
|
||||
|
||||
// Estimate related errors
|
||||
'estimate' => [
|
||||
|
||||
Reference in New Issue
Block a user