This is orignal snipped of code ``` class JudgeService { public static function getJ1J2Tags(Collection $judges, Collection $states): Collection { // 1. Filter only Sitting Judges $filtered = $judges ->where('is_cj', 0) ->where('status', 'working') ->where('judge_type', 'high court'); ``` when i format buffer its turn into this ``` class JudgeService { public static function getJ1J2Tags( Collection $judges, Collection $states, ): Collection { // 1. Filter only Sitting Judges $filtered = $judges ->where("is_cj", 0) ->where("status", "working") ->where("judge_type", "high court"); ``` while same not happening into the vs code.