/**
  * Creates a response that prompts the user to download the text
  * @param string $data text to be downloaded
  * @param string $filename the name that the downloaded file should have
  * @param string $contentType the mimetype that the downloaded file should have
  */
 public function __construct($data, $filename, $contentType)
 {
     $this->data = $data;
     parent::__construct($filename, $contentType);
 }
Example #2
0
 /**
  * Creates a response that prompts the user to download a file which
  * contains the passed string
  * @param string $content the content that should be written into the file
  * @param string $filename the name that the downloaded file should have
  * @param string $contentType the mimetype that the downloaded file should have
  */
 public function __construct($content, $filename, $contentType)
 {
     parent::__construct($filename, $contentType);
     $this->content = $content;
 }