]> git.mxchange.org Git - core.git/commitdiff
Continued:
authorRoland Häder <roland@mxchange.org>
Wed, 2 Dec 2020 02:44:12 +0000 (03:44 +0100)
committerRoland Häder <roland@mxchange.org>
Wed, 2 Dec 2020 02:44:12 +0000 (03:44 +0100)
- added type-hints for primitive variables

Signed-off-by: Roland Häder <roland@mxchange.org>
framework/main/classes/file_directories/io_stream/class_FileIoStream.php
framework/main/classes/output/debug/console/class_DebugConsoleOutput.php
framework/main/classes/output/debug/error/class_DebugErrorLogOutput.php
framework/main/classes/output/debug/web/class_DebugWebOutput.php
framework/main/classes/streams/crypto/mcrypt/class_McryptStream.php
framework/main/classes/streams/crypto/null/class_NullCryptoStream.php
framework/main/classes/streams/crypto/openssl/class_OpenSslStream.php
framework/main/interfaces/streams/class_Stream.php

index 854f858feb5e5eb9d9f7c548b5fd9cb8f95d9b44..1dfc59ce8d97d519f4ee58530b5960e34d2651d8 100644 (file)
@@ -267,7 +267,7 @@ class FileIoStream extends BaseFrameworkSystem implements FileInputStreamer, Fil
         * @return      $data   The data (string mostly) to "stream"
         * @throws      UnsupportedOperationException   If this method is called
         */
-       public function streamData ($data) {
+       public function streamData (string $data) {
                self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('Unhandled ' . strlen($data) . ' bytes in this stream.');
                throw new UnsupportedOperationException(array($this, __FUNCTION__), self::EXCEPTION_UNSPPORTED_OPERATION);
        }
index 75abd9872d7a09234f684dfc7d3a91706d490c20..2f8297f9ea0416d1bf937039ab3ec03621fc6728 100644 (file)
@@ -101,7 +101,7 @@ class DebugConsoleOutput extends BaseDebugOutput implements Debugger, OutputStre
         * @return      $data   The data (string mostly) to "stream"
         * @throws      UnsupportedOperationException   If this method is called
         */
-       public function streamData ($data) {
+       public function streamData (string $data) {
                self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('Unhandled ' . strlen($data) . ' bytes in this stream.');
                throw new UnsupportedOperationException(array($this, __FUNCTION__), self::EXCEPTION_UNSPPORTED_OPERATION);
        }
index 9edd0655c20dfc8fb2ef4454856a96942963690d..495f8f71358f9ed449e247a3c4aa576012895989 100644 (file)
@@ -99,7 +99,7 @@ class DebugErrorLogOutput extends BaseDebugOutput implements Debugger, OutputStr
         * @return      $data   The data (string mostly) to "stream"
         * @throws      UnsupportedOperationException   If this method is called
         */
-       public function streamData ($data) {
+       public function streamData (string $data) {
                self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('Unhandled ' . strlen($data) . ' bytes in this stream.');
                throw new UnsupportedOperationException(array($this, __FUNCTION__), self::EXCEPTION_UNSPPORTED_OPERATION);
        }
index ada0fa4e28af333be51516775fde2ecd710b668c..10868cd8b0af4ec6aaa5cecdc17dbc4f10cd386d 100644 (file)
@@ -88,7 +88,7 @@ class DebugWebOutput extends BaseDebugOutput implements Debugger, OutputStreamer
         * @return      $data   The data (string mostly) to "stream"
         * @throws      UnsupportedOperationException   If this method is called
         */
-       public function streamData ($data) {
+       public function streamData (string $data) {
                self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('Unhandled ' . strlen($data) . ' bytes in this stream.');
                throw new UnsupportedOperationException(array($this, __FUNCTION__), self::EXCEPTION_UNSPPORTED_OPERATION);
        }
index 265b181627e1fed3f038d3d2887d52eece8b3b8d..1a974893c8a91f20e24202bc41eea645f72b3692 100644 (file)
@@ -170,7 +170,7 @@ class McryptStream extends BaseCryptoStream implements EncryptableStream {
         * @return      $data   The data (string mostly) to "stream"
         * @throws      UnsupportedOperationException   If this method is called (which is a mistake)
         */
-       public function streamData ($data) {
+       public function streamData (string $data) {
                self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('Unhandled ' . strlen($data) . ' bytes in this stream.');
                throw new UnsupportedOperationException(array($this, __FUNCTION__), self::EXCEPTION_UNSPPORTED_OPERATION);
        }
index 6564497ef68e098ab663ef6b4d2b4269c6ed80b8..38337ba537c342cb896f6e3da5287ff5054d7efc 100644 (file)
@@ -90,7 +90,7 @@ class NullCryptoStream extends BaseCryptoStream implements EncryptableStream {
         * @return      $data   The data (string mostly) to "stream"
         * @throws      UnsupportedOperationException   If this method is called (which is a mistake)
         */
-       public function streamData ($data) {
+       public function streamData (string $data) {
                self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('Unhandled ' . strlen($data) . ' bytes in this stream.');
                throw new UnsupportedOperationException(array($this, __FUNCTION__), self::EXCEPTION_UNSPPORTED_OPERATION);
        }
index b81bd1a185f592d8be127958ac7c3b97eef93f75..72b9b7066f1a9d065a048af0500ac313660b91ba 100644 (file)
@@ -175,7 +175,7 @@ class OpenSslStream extends BaseCryptoStream implements EncryptableStream {
         * @return      $data   The data (string mostly) to "stream"
         * @throws      UnsupportedOperationException   If this method is called (which is a mistake)
         */
-       public function streamData ($data) {
+       public function streamData (string $data) {
                self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('Unhandled ' . strlen($data) . ' bytes in this stream.');
                throw new UnsupportedOperationException(array($this, __FUNCTION__), self::EXCEPTION_UNSPPORTED_OPERATION);
        }
index e9b7229fe472dffd13e317a731cb6862b97858e2..89604be2fb6068128e7ee41dbecea8c06b777ee5 100644 (file)
@@ -34,6 +34,6 @@ interface Stream extends FrameworkInterface {
         * @param       $data   The data (string mostly) to "stream"
         * @return      $data   The data (string mostly) to "stream"
         */
-       function streamData ($data);
+       function streamData (string $data);
 
 }