Пример #1
0
 /**
  * Enables quiet mode.
  *
  * This method exists as a hack because the API exposed for this method in PhpDocumentor
  * doesn't work correctly.
  *
  * Note that because we are setting a "private" GLOBAL(!!) config var with this value, this
  * is subject to break if PhpDocumentor internals changes.
  *
  */
 public function setQuietMode()
 {
     global $_phpDocumentor_setting;
     $_phpDocumentor_setting['quiet'] = true;
     parent::setQuietMode();
 }