TYPO3 CMS  TYPO3_6-2
ResponseInterface.php
Go to the documentation of this file.
1 <?php
2 namespace TYPO3\CMS\Extbase\Mvc;
3 
21 interface ResponseInterface {
22 
30  public function setContent($content);
31 
39  public function appendContent($content);
40 
47  public function getContent();
48 
55  public function shutdown();
56 }