All empty double-quoted strings replaced with single-quotes
[core.git] / inc / classes / main / io / class_FileIoStream.php
index 7e257be47de862745dc7ce7ca2d6d3f1e557183e..b4a8548062f007f29c69f14ed07c6cbef0ef7861 100644 (file)
@@ -4,7 +4,7 @@
  *
  * @author             Roland Haeder <webmaster@ship-simu.org>
  * @version            0.0.0
- * @copyright  Copyright (c) 2007, 2008 Roland Haeder, this is free software
+ * @copyright  Copyright (c) 2007 - 2009 Roland Haeder, this is free software
  * @license            GNU GPL 3.0 or any newer version
  * @link               http://www.ship-simu.org
  *
@@ -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);