/**
  * @return Config
  */
 public function build()
 {
     $config = new Config('cs278', 'Chris Smith\'s personal coding standard.');
     $config->setUsingCache(true);
     $config->level(FixerInterface::SYMFONY_LEVEL);
     $config->fixers(['newline_after_open_tag', 'ordered_use', 'phpdoc_order', 'short_array_syntax']);
     $config->finder($this->finder);
     return $config;
 }