Removed asserts as they seem to be to hard and returned status code instead.
[core.git] / inc / classes / interfaces / io / pointer / io / class_InputOutputPointer.php
index 8be635101a78c2e7bf488c95a12a2b0ec60ea96d..b901c1b472819c6c01dc1b0f7088e9a1ad9ac2c6 100644 (file)
@@ -25,7 +25,7 @@ interface InputOutputPointer extends InputPointer, OutputPointer {
        /**
         * Rewinds to the beginning of the file
         *
-        * @return      void
+        * @return      $status         Status of this operation
         */
        function rewind ();
 
@@ -34,7 +34,7 @@ interface InputOutputPointer extends InputPointer, OutputPointer {
         *
         * @param       $seekPosition   Seek position in file
         * @param       $whence                 "Seek mode" (see http://de.php.net/fseek)
-        * @return      void
+        * @return      $tatus                  Status of this operation
         */
        function seek ($seekPosition, $whence = SEEK_SET);