/** * Basic YAML parser. * * Supports only string or object values, and 2 spaces indentation. * * @todo Just ship symfony/yaml. * @param string $input * @return array */ private function parseBasicYaml( $input ) {
Since rMW120ef51cbf76: SettingsBuilder: Add YAML file format., symfony/yaml has been included by default in MW core's composer.json require. We should be able to replace this custom Yaml parser with a call to symfony/yaml now