@@ -80,11 +80,11 @@ discard block |
||
80 | 80 | private function decoderUtf8Str(string $sStr): string |
81 | 81 | { |
82 | 82 | $sEncoding = $this->xConfigManager->getOption('core.encoding', ''); |
83 | - if(function_exists('iconv')) |
|
83 | + if (function_exists('iconv')) |
|
84 | 84 | { |
85 | 85 | return iconv("UTF-8", $sEncoding . '//TRANSLIT', $sStr); |
86 | 86 | } |
87 | - if(function_exists('mb_convert_encoding')) |
|
87 | + if (function_exists('mb_convert_encoding')) |
|
88 | 88 | { |
89 | 89 | return mb_convert_encoding($sStr, $sEncoding, "UTF-8"); |
90 | 90 | } |
@@ -103,7 +103,7 @@ discard block |
||
103 | 103 | private function decodeRequestParameter(string $sParam): string |
104 | 104 | { |
105 | 105 | $sParam = $this->decodeStr($sParam); |
106 | - if(!$this->xConfigManager->getOption('core.decode_utf8')) |
|
106 | + if (!$this->xConfigManager->getOption('core.decode_utf8')) |
|
107 | 107 | { |
108 | 108 | return $sParam; |
109 | 109 | } |
@@ -14,7 +14,7 @@ |
||
14 | 14 | * @link https://github.com/jaxon-php/jaxon-core |
15 | 15 | */ |
16 | 16 | |
17 | - use Jaxon\Plugin\Response\Dialog\DialogCommand; |
|
17 | + use Jaxon\Plugin\Response\Dialog\DialogCommand; |
|
18 | 18 | |
19 | 19 | class JxnCall extends AbstractCall |
20 | 20 | { |