Apply fixes from StyleCI

This commit is contained in:
StyleCI Bot
2023-03-24 06:00:31 +00:00
committed by RafficMohammed
parent 0975cc5dd9
commit b3b057e0cc
33 changed files with 172 additions and 184 deletions

View File

@@ -159,7 +159,7 @@ class PriorityController extends Controller
->update(['is_default' => 1]);
}
return \Redirect::route('priority.index')->with('success', (Lang::get('lang.priority_successfully_updated')));
return \Redirect::route('priority.index')->with('success', Lang::get('lang.priority_successfully_updated'));
}
/**
@@ -187,6 +187,6 @@ class PriorityController extends Controller
$tk_priority->delete();
return \Redirect::route('priority.index')->with('success', (Lang::get('lang.delete_successfully')));
return \Redirect::route('priority.index')->with('success', Lang::get('lang.delete_successfully'));
}
}