]> git.mxchange.org Git - core.git/blobdiff - framework/main/classes/output/console/class_ConsoleOutput.php
Rewrites:
[core.git] / framework / main / classes / output / console / class_ConsoleOutput.php
index 9dcae9763f803a0bdc145f9f6bd8af02a543a6b4..1b11c51adf1481352900ea1031cace08601c5bbf 100644 (file)
@@ -53,9 +53,8 @@ class ConsoleOutput extends BaseOutput implements OutputStreamer {
         * @param       $contentType    A valid content-type
         * @return      $debugInstance  An instance of this middleware class
         */
-       public static final function createConsoleOutput ($contentType) {
+       public static final function createConsoleOutput (string $contentType) {
                // Cast the content-type to string
-               $contentType = (string) $contentType;
                $contentType = trim($contentType);
 
                // Get instance
@@ -96,7 +95,7 @@ class ConsoleOutput extends BaseOutput implements OutputStreamer {
         * @param       $stripTags      Whether HTML tags shall be stripped out
         * @return      void
         */
-       public final function output ($outStream = false, $stripTags = false) {
+       public final function output (string $outStream = '', bool $stripTags = false) {
                print trim($outStream) . PHP_EOL;
        }