Fix @method tags for file functions
authorMatthias Schmidt <gravatronics@live.com>
Fri, 27 May 2016 06:39:04 +0000 (08:39 +0200)
committerMatthias Schmidt <gravatronics@live.com>
Fri, 27 May 2016 09:48:12 +0000 (11:48 +0200)
wcfsetup/install/files/lib/system/io/File.class.php
wcfsetup/install/files/lib/system/io/GZipFile.class.php

index 9dce79165e449c524b4e773f1909e477e554a70f..5266e4925e27ecf4ccd69e864de0078f447ef6a9 100644 (file)
@@ -23,15 +23,15 @@ use wcf\system\exception\SystemException;
  * @subpackage system.io
  * @category   Community Framework
  * 
- * @method     boolean         close($handle)
- * @method     boolean         eof($handle)
- * @method     string          gets($handle, $length = null)
- * @method     resource        open($filename, $mode, $use_include_path = false, $context = null)
- * @method     integer         seek($handle, $offset, $whence = SEEK_SET)
- * @method     string          read($zp, $length)
- * @method     integer         tell($handle)
- * @method     boolean         touch($filename, $time = 0, $atime = 0)         note: default value of `$time` actually is `time()`
- * @method     integer         write($handle, $string, $length = null)
+ * @method     boolean         close()
+ * @method     boolean         eof()
+ * @method     string          gets($length = null)
+ * @method     resource        open($mode, $use_include_path = false, $context = null)
+ * @method     integer         seek($offset, $whence = SEEK_SET)
+ * @method     string          read($length)
+ * @method     integer         tell()
+ * @method     boolean         touch($time = 0, $atime = 0)            note: default value of `$time` actually is `time()`
+ * @method     integer         write($string, $length = null)
  */
 class File {
        /**
index b4ae3162b3feb3533e485e64f0a6f19a152bbf93..769ddf8926e3b99478e98f68a4bf6a9c7b286fb3 100644 (file)
@@ -12,8 +12,8 @@ use wcf\system\exception\SystemException;
  * @subpackage system.io
  * @category   Community Framework
  * 
- * @method     resource        open($filename, $mode, $use_include_path = 0)
- * @method     boolean         rewind($zp)
+ * @method     resource        open($mode, $use_include_path = 0)
+ * @method     boolean         rewind()
  */
 class GZipFile extends File {
        /**