X-Git-Url: https://git.mxchange.org/?p=core.git;a=blobdiff_plain;f=inc%2Fclasses%2Fmain%2Fstreams%2Finput%2Fclass_;h=108f48f23b64142c6067e369aaf466799c7dc99d;hp=81fb8ed65dd7a428b7413e354ecbb066b83bae0a;hb=7feab128546f6802897a03dae592834a5b1632e6;hpb=4435c2d922e89195cd9b8c47bb296f51b193243c diff --git a/inc/classes/main/streams/input/class_ b/inc/classes/main/streams/input/class_ index 81fb8ed6..108f48f2 100644 --- a/inc/classes/main/streams/input/class_ +++ b/inc/classes/main/streams/input/class_ @@ -21,7 +21,7 @@ * You should have received a copy of the GNU General Public License * along with this program. If not, see . */ -class ???InputStream extends BaseInputStream implements InputStreamable { +class ???InputStream extends BaseStream implements InputStreamable { /** * Protected constructor * @@ -37,7 +37,7 @@ class ???InputStream extends BaseInputStream implements InputStreamable { * * @return $streamInstance An instance of this node class */ - public final static function create???InputStream (Requestable $requestInstance) { + public final static function create???InputStream () { // Get a new instance $streamInstance = new ???InputStream(); @@ -53,7 +53,7 @@ class ???InputStream extends BaseInputStream implements InputStreamable { * @throws UnsupportedOperationException If this method is called */ public function streamData ($data) { - $this->debugOutput('Unhandled ' . strlen($data) . ' bytes in this stream.'); + self::createDebugInstance(__CLASS__)->debugOutput('Unhandled ' . strlen($data) . ' bytes in this stream.'); throw new UnsupportedOperationException(array($this, __FUNCTION__), self::EXCEPTION_UNSPPORTED_OPERATION); } }