/**
  * Collect the information for the menu
  */
 protected function collectInformation()
 {
     $this->getWebServer();
     $this->getPhpVersion();
     $this->getDatabase();
     $this->getApplicationContext();
     $this->getComposerMode();
     $this->getGitRevision();
     $this->getOperatingSystem();
     $this->emitGetSystemInformation();
     $this->emitLoadMessages();
     $this->severityBadgeClass = !$this->highestSeverity->equals(InformationStatus::STATUS_NOTICE) ? 'badge-' . (string) $this->highestSeverity : '';
 }