Tell phpcs to use a different indent inside control structures
Output of phpcs is telling me to put 8 spaces inside the if class bla { private function wop() { if (true) { $something = 'yes'; // 6 spaces indent is what I want! } } } indented at least…