Merge pull request #15882 from owncloud/fix-type-annotation

Fix type annotation
This commit is contained in:
Morris Jobke 2015-04-27 14:17:59 +02:00
commit 93c25a1f4a
2 changed files with 2 additions and 2 deletions

View File

@ -76,7 +76,7 @@ class SecureRandom implements 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

View File

@ -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