modules/providers/service_container_symfony/lib/Symfony/Component/Yaml/Inline.php 1 location
|
@@ 55-58 (lines=4) @@
|
| 52 |
|
return ''; |
| 53 |
|
} |
| 54 |
|
|
| 55 |
|
if (function_exists('mb_internal_encoding') && ((int) ini_get('mbstring.func_overload')) & 2) { |
| 56 |
|
$mbEncoding = mb_internal_encoding(); |
| 57 |
|
mb_internal_encoding('ASCII'); |
| 58 |
|
} |
| 59 |
|
|
| 60 |
|
$i = 0; |
| 61 |
|
switch ($value[0]) { |
modules/providers/service_container_symfony/lib/Symfony/Component/Yaml/Parser.php 1 location
|
@@ 63-66 (lines=4) @@
|
| 60 |
|
$value = $this->cleanup($value); |
| 61 |
|
$this->lines = explode("\n", $value); |
| 62 |
|
|
| 63 |
|
if (function_exists('mb_internal_encoding') && ((int) ini_get('mbstring.func_overload')) & 2) { |
| 64 |
|
$mbEncoding = mb_internal_encoding(); |
| 65 |
|
mb_internal_encoding('UTF-8'); |
| 66 |
|
} |
| 67 |
|
|
| 68 |
|
$data = array(); |
| 69 |
|
$context = null; |