apply yet another StyleCI recommendations

This commit is contained in:
El RIDO 2019-01-20 12:29:27 +01:00
parent e3d7ac4442
commit 6beea8f2f4
No known key found for this signature in database
GPG Key ID: 0F5C940A6BD81F92
1 changed files with 1 additions and 1 deletions

View File

@ -44,7 +44,7 @@ class RequestTest extends PHPUnit_Framework_TestCase
$queryChars = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ='; $queryChars = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ=';
$queryCharCount = strlen($queryChars) - 1; $queryCharCount = strlen($queryChars) - 1;
$resultLength = random_int(1, 10); $resultLength = random_int(1, 10);
$result = ''; $result = '';
for ($i = 0; $i < $resultLength; ++$i) { for ($i = 0; $i < $resultLength; ++$i) {
$result .= $queryChars[random_int(0, $queryCharCount)]; $result .= $queryChars[random_int(0, $queryCharCount)];
} }