Add github action

This commit is contained in:
RainLoop Team 2021-01-16 17:51:14 +03:00
parent 1979f84dab
commit 20e0c1417d
17 changed files with 2038 additions and 2040 deletions

View file

@ -97,10 +97,13 @@ abstract class AbstractConfig
switch ($sType)
{
default:
case 'float':
case 'string':
$this->aData[$sSectionKey][$sParamKey][0] = (string) $mParamValue;
break;
case 'float':
case 'double':
$this->aData[$sSectionKey][$sParamKey][0] = (float) $mParamValue;
break;
case 'int':
case 'integer':
$this->aData[$sSectionKey][$sParamKey][0] = (int) $mParamValue;
@ -321,6 +324,7 @@ abstract class AbstractConfig
break;
case 'int':
case 'integer':
case 'double':
$sValue = $mParamValue[0];
break;
case 'bool':