flushBuffer() overwritten
authorRoland Häder <roland@mxchange.org>
Sat, 18 Jul 2009 05:46:08 +0000 (05:46 +0000)
committerRoland Häder <roland@mxchange.org>
Sat, 18 Jul 2009 05:46:08 +0000 (05:46 +0000)
inc/classes/main/response/console/class_ConsoleResponse.php

index 88e1dd804a3a48ce55a56fb9d42f6eb7ae94dfe9..8320e47ebc23aea35a3cbdf471a3ece4f7e5140f 100644 (file)
@@ -121,6 +121,19 @@ class ConsoleResponse extends BaseResponse implements Responseable {
                $defaultCommand = $this->getConfigInstance()->readConfig('default_console_command');
                return $defaultCommand;
        }
+
+       /**
+        * Flushs the cached console response to the console
+        *
+        * @param       $force  Wether we shall force the output or abort if headers are
+        *                                      already sent with an exception
+        * @return      void
+        * @throws      ResponseHeadersAlreadySentException             Thrown if headers are
+        *                                                                                                      already sent
+        */
+       public function flushBuffer ($force = false) {
+               $this->partialStub('Please implement this class.');
+       }
 }
 
 // [EOF]