]> git.mxchange.org Git - shipsimu.git/blobdiff - inc/classes/main/io/class_FileIoStream.php
More class descriptions translated, generic user class added
[shipsimu.git] / inc / classes / main / io / class_FileIoStream.php
index c9833465a84dd6757a94e947795848c84ea39303..ee02a8d2ffa32198fb466746110af2cd01843201 100644 (file)
@@ -21,7 +21,7 @@
  * You should have received a copy of the GNU General Public License
  * along with this program. If not, see <http://www.gnu.org/licenses/>.
  */
-class FileIOStream extends BaseFrameworkSystem implements FileInputStreamer, FileOutputStreamer {
+class FileIoStream extends BaseFrameworkSystem implements FileInputStreamer, FileOutputStreamer {
        /**
         * Protected constructor
         */
@@ -30,7 +30,7 @@ class FileIOStream extends BaseFrameworkSystem implements FileInputStreamer, Fil
                parent::__construct(__CLASS__);
 
                // Set part description
-               $this->setObjectDescription("Universal Datei-Ein-/Ausgabesystem");
+               $this->setObjectDescription("Universal file I/O stream system");
 
                // Create unique ID
                $this->createUniqueID();
@@ -44,11 +44,11 @@ class FileIOStream extends BaseFrameworkSystem implements FileInputStreamer, Fil
         * Create a file IO stream. This is a class for performing all actions
         * on files like creating, deleting and loading them.
         *
-        * @return      $ioInstance     An instance of FileIOStream
+        * @return      $ioInstance     An instance of FileIoStream
         */
-       public final static function createFileIOStream () {
+       public final static function createFileIoStream () {
                // Create new instance
-               $ioInstance = new FileIOStream();
+               $ioInstance = new FileIoStream();
 
                // Return the instance
                return $ioInstance;