Continued:
authorRoland Häder <roland@mxchange.org>
Wed, 3 Jan 2018 23:30:05 +0000 (00:30 +0100)
committerRoland Häder <roland@mxchange.org>
Wed, 3 Jan 2018 23:30:05 +0000 (00:30 +0100)
- it is eof() in SplFileObject, not feof()

Signed-off-by: Roland Häder <roland@mxchange.org>
framework/main/classes/file_directories/class_BaseFileIo.php

index 6f849238facde825a1a9ee2cabf975a78aa16d7d..ce65bd898a9b8f087af82ffdd4ad13f3fa580295 100644 (file)
@@ -140,7 +140,7 @@ abstract class BaseFileIo extends BaseFrameworkSystem implements FilePointer, Cl
         * @return      $isEndOfFileReached             Whether the EOF has been reached
         */
        public final function isEndOfFileReached () {
-               return $this->getFileObject()->feof();
+               return $this->getFileObject()->eof();
        }
 
        /**