Fix test.
The build was successful. Details

This commit is contained in:
Rafal Kupiec 2018-09-23 19:07:03 +02:00
parent 08296110fb
commit ba0c250911
Signed by: belliash
GPG Key ID: 4E829243E0CFE6B4
1 changed files with 1 additions and 1 deletions

View File

@ -2,7 +2,7 @@ class Program {
private function num2Roman(int $num) {
int $n = intval($num);
int $result = '';
string $result = '';
mixed $lookup = array('M' => 1000, 'CM' => 900, 'D' => 500, 'CD' => 400,
'C' => 100, 'XC' => 90, 'L' => 50, 'XL' => 40,
'X' => 10, 'IX' => 9, 'V' => 5, 'IV' => 4, 'I' => 1);