getName() public method

The name must be all lowercase and without any spaces.
public getName ( ) : string
return string The name of the fixer
 /**
  * @param FixerInterface $fixer
  *
  * @return string[]|null
  */
 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();
 }