diff options
author | Morris Jobke <hey@morrisjobke.de> | 2015-04-27 14:17:59 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2015-04-27 14:17:59 +0200 |
commit | 93c25a1f4af11483baaef447faa235c938b2a444 (patch) | |
tree | 3fdef1ecb934dc5bc4ca32030bef9f8b8ad52938 /lib/public | |
parent | cc331609bffad7dfb1e560f054ce5aac30a5ac3a (diff) | |
parent | d0363fe396e1a4703b3e510797a845e2f7359564 (diff) | |
download | nextcloud-server-93c25a1f4af11483baaef447faa235c938b2a444.tar.gz nextcloud-server-93c25a1f4af11483baaef447faa235c938b2a444.zip |
Merge pull request #15882 from owncloud/fix-type-annotation
Fix type annotation
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 |