/**
  * @param $arguments
  * @return bool
  */
 protected function infoCommand($arguments)
 {
     if (count($arguments) !== 1 && count($arguments) !== 2) {
         return $this->helpCommand('info');
     }
     $controller = new \etobi\extensionUtils\Controller\TerController();
     $success = $controller->infoAction($arguments[0], isset($arguments[1]) ? $arguments[1] : NULL);
     return $success;
 }