htdocs/class/libraries/vendor/symfony/yaml/Symfony/Component/Yaml/Inline.php 1 location
|
@@ 52-55 (lines=4) @@
|
| 49 |
|
return ''; |
| 50 |
|
} |
| 51 |
|
|
| 52 |
|
if (function_exists('mb_internal_encoding') && ((int) ini_get('mbstring.func_overload')) & 2) { |
| 53 |
|
$mbEncoding = mb_internal_encoding(); |
| 54 |
|
mb_internal_encoding('ASCII'); |
| 55 |
|
} |
| 56 |
|
|
| 57 |
|
$i = 0; |
| 58 |
|
switch ($value[0]) { |
htdocs/class/libraries/vendor/symfony/yaml/Symfony/Component/Yaml/Parser.php 1 location
|
@@ 62-65 (lines=4) @@
|
| 59 |
|
throw new ParseException('The YAML value does not appear to be valid UTF-8.'); |
| 60 |
|
} |
| 61 |
|
|
| 62 |
|
if (function_exists('mb_internal_encoding') && ((int) ini_get('mbstring.func_overload')) & 2) { |
| 63 |
|
$mbEncoding = mb_internal_encoding(); |
| 64 |
|
mb_internal_encoding('UTF-8'); |
| 65 |
|
} |
| 66 |
|
|
| 67 |
|
$data = array(); |
| 68 |
|
$context = null; |