X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=framework%2Fmain%2Fclasses%2Fresponse%2Fconsole%2Fclass_ConsoleResponse.php;h=cdd53a205568c7f36fb21696eb557f69fd9ae202;hb=b470fb8107e5029819c345f23a961fbd8085af7e;hp=10b064c42c3f8e7b2b7353c5e7ec1d161440f93a;hpb=78a010fef84895720e796842208f01dfb619c332;p=core.git diff --git a/framework/main/classes/response/console/class_ConsoleResponse.php b/framework/main/classes/response/console/class_ConsoleResponse.php index 10b064c4..cdd53a20 100644 --- a/framework/main/classes/response/console/class_ConsoleResponse.php +++ b/framework/main/classes/response/console/class_ConsoleResponse.php @@ -1,17 +1,17 @@ * @version 0.0.0 - * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2017 Core Developer Team + * @copyright Copyright (c) 2007, 2008 Roland Haeder, 2009 - 2020 Core Developer Team * @license GNU GPL 3.0 or any newer version * @link http://www.shipsimu.org * @@ -48,36 +48,16 @@ class ConsoleResponse extends BaseResponse implements Responseable { /** * Creates an object of this class * - * @param $applicationInstance An instance of a manageable application - * @return $responseInstance A prepared instance of this class + * @return $responseInstance A prepared instance of this class */ - public static final function createConsoleResponse (ManageableApplication $applicationInstance) { + public static final function createConsoleResponse () { // Get a new instance $responseInstance = new ConsoleResponse(); - // Set the application instance - $responseInstance->setApplicationInstance($applicationInstance); - - // Initialize the template engine here - $responseInstance->initTemplateEngine($applicationInstance); - - // Init web output instance - $responseInstance->initWebOutputInstance(); - // Return the prepared instance return $responseInstance; } - /** - * Initializes the template engine instance - * - * @param $applicationInstance An instance of a manageable application - * @return void - */ - public final function initTemplateEngine (ManageableApplication $applicationInstance) { - $this->setTemplateInstance($this->prepareTemplateInstance($applicationInstance)); - } - /** * Adds a cookie to the response * @@ -88,7 +68,7 @@ class ConsoleResponse extends BaseResponse implements Responseable { * @return void * @throws ResponseHeadersAlreadySentException If headers are already sent */ - public function addCookie ($cookieName, $cookieValue, $encrypted = FALSE, $expires = NULL) { + public function addCookie (string $cookieName, $cookieValue, bool $encrypted = FALSE, int $expires = NULL) { //* DEBUG: */ echo $cookieName.'='.$cookieValue."
\n"; $this->partialStub('Naturally unimplemented in console response.'); } @@ -133,7 +113,7 @@ class ConsoleResponse extends BaseResponse implements Responseable { * @return void * @throws ResponseHeadersAlreadySentException Thrown if headers are already sent */ - public function flushBuffer ($force = FALSE) { + public function flushBuffer ($force = false) { $this->partialStub('Please implement this class.'); }