diff options
author | Lukas Reschke <lukas@owncloud.com> | 2015-04-27 13:31:18 +0200 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2015-04-27 13:31:18 +0200 |
commit | d0363fe396e1a4703b3e510797a845e2f7359564 (patch) | |
tree | 98019e5bb3b3fb604cf4a0a658916c22c96d0832 /lib/public | |
parent | 802f818c2770b8b52d050e8fbc7562295f995445 (diff) | |
download | nextcloud-server-d0363fe396e1a4703b3e510797a845e2f7359564.tar.gz nextcloud-server-d0363fe396e1a4703b3e510797a845e2f7359564.zip |
Fix type annotation
Obviously should be an int
Diffstat (limited to 'lib/public')
-rw-r--r-- | lib/public/security/isecurerandom.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/public/security/isecurerandom.php b/lib/public/security/isecurerandom.php index 69e6ec21b13..cbe2d4e0d56 100644 --- a/lib/public/security/isecurerandom.php +++ b/lib/public/security/isecurerandom.php @@ -69,7 +69,7 @@ interface ISecureRandom { /** * Generate a random string of specified length. - * @param string $length The length of the generated string + * @param int $length The length of the generated string * @param string $characters An optional list of characters to use if no characterlist is * specified all valid base64 characters are used. * @return string |