/**
  * Sets the output.
  * @param standardOutput $output The project output.
  */
 public function setOutput($output)
 {
     $res = tfResources::get();
     if (!in_array($output, $res->outputs)) {
         throw new SystemException('The used output "' . $output . '" is not supported by TypeFriendly.');
     }
     $this->output = $output;
 }