/**
  * Store the data from a @usage annotation in our example usage list.
  */
 protected function processUsageTag($tag)
 {
     $lines = explode("\n", $this->getTagContents($tag));
     $usage = array_shift($lines);
     $description = static::removeLineBreaks(implode("\n", $lines));
     $this->commandInfo->setExampleUsage($usage, $description);
 }