All empty double-quoted strings replaced with single-quotes
[core.git] / inc / classes / main / io / class_FileIoStream.php
index 0eff6c5a9c3923e17e23f3f235f82a537e46efa6..b4a8548062f007f29c69f14ed07c6cbef0ef7861 100644 (file)
@@ -58,7 +58,7 @@ class FileIoStream extends BaseFrameworkSystem implements FileInputStreamer, Fil
         */
        public final function saveFile ($fileName, $dataArray) {
                // Try it five times
-               $dirName = ""; $fileInstance = null;
+               $dirName = ''; $fileInstance = null;
                for ($idx = 0; $idx < 5; $idx++) {
                        // Get a file output pointer
                        try {
@@ -114,11 +114,11 @@ class FileIoStream extends BaseFrameworkSystem implements FileInputStreamer, Fil
         */
        public final function loadFileContents ($fqfn) {
                // Initialize some variables and arrays
-               $inputBuffer = "";
-               $lastBuffer = "";
+               $inputBuffer = '';
+               $lastBuffer = '';
                $header = array();
                $data = array();
-               $readData = ""; // This will contain our read data
+               $readData = ''; // This will contain our read data
 
                // Get a file input handler
                $fileInstance = FrameworkFileInputPointer::createFrameworkFileInputPointer($fqfn);