private function getFixersConflicts(FixerInterface $fixer) { static $conflictMap = array('no_blank_lines_before_namespace' => array('single_blank_line_before_namespace')); $fixerName = $fixer->getName(); return array_key_exists($fixerName, $conflictMap) ? $conflictMap[$fixerName] : array(); }