getDefaultHelperSet() protected method

protected getDefaultHelperSet ( )
Example #1
0
 /**
  * {@inheritdoc}
  *
  * Overwritten so the helpers can be mocked.
  * This method is called within the constructor so setting it later
  * will not give the expected result.
  *
  * @return \Symfony\Component\Console\Helper\HelperSet
  */
 protected function getDefaultHelperSet()
 {
     $helperSet = parent::getDefaultHelperSet();
     $callback = $this->helperSetManipulator;
     $callback($helperSet);
     return $helperSet;
 }