]> git.mxchange.org Git - core.git/blobdiff - inc/classes/main/io/class_FrameworkFileInputPointer.php
Fixed
[core.git] / inc / classes / main / io / class_FrameworkFileInputPointer.php
index 35376e96c5f561072e2225fd39a7223a275d9efc..f96b36152818081279746061728bab1ea1bbb4db 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, 2008 Roland Haeder, 2009 Core Developer Team
  * @license            GNU GPL 3.0 or any newer version
  * @link               http://www.ship-simu.org
  *
@@ -25,7 +25,7 @@ class FrameworkFileInputPointer extends BaseFrameworkSystem {
        /**
         * The current file we are working in
         */
-       private $fileName = "";
+       private $fileName = '';
 
        /**
         * The file pointer
@@ -168,7 +168,7 @@ class FrameworkFileInputPointer extends BaseFrameworkSystem {
                // Close the file pointer and reset the instance variable
                @fclose($this->getPointer());
                $this->setPointer(null);
-               $this->setFileName("");
+               $this->setFileName('');
        }
 
        /**