mirror of
https://github.com/PHPOffice/PhpSpreadsheet.git
synced 2026-09-13 19:46:31 +00:00
Style fix
This commit is contained in:
committed by
Adrien Crivelli
parent
73c79a90a8
commit
82b3a36ab7
@@ -44,15 +44,18 @@ class DataTypeTest extends TestCase
|
||||
for ($i = 0; $i < $length; ++$i) {
|
||||
$x = mt_rand(0, 2);
|
||||
switch ($x) {
|
||||
case 0: $string .= chr(mt_rand(97, 122));
|
||||
case 0:
|
||||
$string .= chr(mt_rand(97, 122));
|
||||
|
||||
break;
|
||||
case 1: $string .= chr(mt_rand(65, 90));
|
||||
break;
|
||||
case 1:
|
||||
$string .= chr(mt_rand(65, 90));
|
||||
|
||||
break;
|
||||
case 2: $string .= chr(mt_rand(48, 57));
|
||||
break;
|
||||
case 2:
|
||||
$string .= chr(mt_rand(48, 57));
|
||||
|
||||
break;
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user