All empty double-quoted strings replaced with single-quotes
[core.git] / inc / classes / main / io / class_FrameworkFileOutputPointer.php
index 6c555bdffbc7645701b9208cbfdc2e721de64ec6..0506adde8ae5f6d92d911162073a1f1529fb1752 100644 (file)
@@ -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('');
        }
 
        /**