]> git.mxchange.org Git - core.git/blobdiff - framework/main/classes/output/web/class_WebOutput.php
Refacuring / possible WIP:
[core.git] / framework / main / classes / output / web / class_WebOutput.php
index 6abfc10fc1068765637473678c300da81ae5eb5f..01d14239b94831944f753fd0e278f829668d9a32 100644 (file)
@@ -5,7 +5,6 @@ namespace Org\Mxchange\CoreFramework\Output;
 // Import framework stuff
 use Org\Mxchange\CoreFramework\Bootstrap\FrameworkBootstrap;
 use Org\Mxchange\CoreFramework\Generic\UnsupportedOperationException;
-use Org\Mxchange\CoreFramework\Manager\ManageableApplication;
 use Org\Mxchange\CoreFramework\Output\BaseOutput;
 use Org\Mxchange\CoreFramework\Registry\Registerable;
 use Org\Mxchange\CoreFramework\Stream\Output\OutputStreamer;
@@ -52,10 +51,9 @@ class WebOutput extends BaseOutput implements OutputStreamer, Registerable {
        /**
         * Create a new web output system and set the content type
         *
-        * @param       $applicationInstance    An instance of a ManageableApplication class
-        * @return      $debugInstance                  An instance of this middleware class
+        * @return      $webInstance    An instance of an OutputStreamer class
         */
-       public static final function createWebOutput (ManageableApplication $applicationInstance) {
+       public static final function createWebOutput () {
                // Is the self-instance already set?
                if (is_null(self::$webInstance)) {
                        // Get a new instance and set it
@@ -68,8 +66,8 @@ class WebOutput extends BaseOutput implements OutputStreamer, Registerable {
                        if (!empty($contentType)) {
                                // Set the header
                                FrameworkBootstrap::getResponseInstance()->addHeader('Content-type', $contentType);
-                       } // END - if
-               } // END - if
+                       }
+               }
 
                // Return instance
                return self::$webInstance;
@@ -86,37 +84,4 @@ class WebOutput extends BaseOutput implements OutputStreamer, Registerable {
                print(stripslashes($outStream));
        }
 
-       /**
-        * Determines seek position
-        *
-        * @return      $seekPosition   Current seek position
-        * @throws      UnsupportedOperationException   If this method is called
-        */
-       public function determineSeekPosition () {
-               throw new UnsupportedOperationException(array($this, __FUNCTION__), self::EXCEPTION_UNSPPORTED_OPERATION);
-       }
-
-       /**
-        * Seek to given offset (default) or other possibilities as fseek() gives.
-        *
-        * @param       $offset         Offset to seek to (or used as "base" for other seeks)
-        * @param       $whence         Added to offset (default: only use offset to seek to)
-        * @return      $status         Status of file seek: 0 = success, -1 = failed
-        * @throws      UnsupportedOperationException   If this method is called
-        */
-       public function seek (int $offset, int $whence = SEEK_SET) {
-               self::createDebugInstance(__CLASS__, __LINE__)->debugOutput('WEB-OUTPUT: offset=' . $offset . ',whence=' . $whence);
-               throw new UnsupportedOperationException(array($this, __FUNCTION__), self::EXCEPTION_UNSPPORTED_OPERATION);
-       }
-
-       /**
-        * Size of file stack
-        *
-        * @return      $size   Size (in bytes) of file
-        * @throws      UnsupportedOperationException   If this method is called
-        */
-       public function size () {
-               throw new UnsupportedOperationException(array($this, __FUNCTION__), self::EXCEPTION_UNSPPORTED_OPERATION);
-       }
-
 }