]> git.mxchange.org Git - core.git/blobdiff - inc/classes/main/io/class_FrameworkFileOutputPointer.php
All empty double-quoted strings replaced with single-quotes
[core.git] / inc / classes / main / io / class_FrameworkFileOutputPointer.php
index 84c8ed4078b30080b7cf05ebb135d4ff0df4e167..0506adde8ae5f6d92d911162073a1f1529fb1752 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
  *
@@ -25,7 +25,7 @@ class FrameworkFileOutputPointer extends BaseFrameworkSystem {
        /**
         * The current file we are working in
         */
-       private $fileName = "";
+       private $fileName = '';
 
        /**
         * The file pointer
@@ -138,7 +138,7 @@ class FrameworkFileOutputPointer extends BaseFrameworkSystem {
                // Close the file pointer and reset the instance variable
                @fclose($this->getPointer());
                $this->setPointer(null);
-               $this->setFileName("");
+               $this->setFileName('');
        }
 
        /**