Opps, don't use instance here, file pointer is okay. ;-)
authorRoland Haeder <roland@mxchange.org>
Sat, 17 May 2014 21:21:16 +0000 (23:21 +0200)
committerRoland Haeder <roland@mxchange.org>
Sat, 17 May 2014 21:21:16 +0000 (23:21 +0200)
Signed-off-by: Roland Häder <roland@mxchange.org>
inc/classes/main/file_directories/io/class_FrameworkFileInputOutputPointer.php

index 36c81898d8ebfd008245ae17461710a24d052e2e..da4096f9c794a8a15fa64035b0288b5bfb32cb3b 100644 (file)
@@ -137,7 +137,7 @@ class FrameworkFileInputOutputPointer extends BaseFileIo implements InputOutputP
         */
        public function seek ($seekPosition, $whence = SEEK_SET) {
                // Move the file pointer
         */
        public function seek ($seekPosition, $whence = SEEK_SET) {
                // Move the file pointer
-               assert(fseek($this->getPointerInstance(), $seekPosition, $whence) === 0);
+               assert(fseek($this->getPointer(), $seekPosition, $whence) === 0);
        }
 }
 
        }
 }