diff --git a/lib/Doctrine/ORM/Tools/Console/Command/MappingDescribeCommand.php b/lib/Doctrine/ORM/Tools/Console/Command/MappingDescribeCommand.php index 1894c5e44..1300a088d 100644 --- a/lib/Doctrine/ORM/Tools/Console/Command/MappingDescribeCommand.php +++ b/lib/Doctrine/ORM/Tools/Console/Command/MappingDescribeCommand.php @@ -234,7 +234,7 @@ EOT } if (is_array($value)) { - if (version_compare(phpversion(), '5.4.0', '>=')) { + if (defined('JSON_UNESCAPED_UNICODE') && defined('JSON_UNESCAPED_SLASHES')) { return json_encode($value, JSON_UNESCAPED_UNICODE|JSON_UNESCAPED_SLASHES); } @@ -275,8 +275,10 @@ EOT private function formatAssociationMappings($associationMappings) { $this->formatField('Association mappings:', ''); + foreach ($associationMappings as $associationName => $mapping) { - $this->formatField(sprintf(' %s',$associationName), ''); + $this->formatField(sprintf(' %s', $associationName), ''); + foreach ($mapping as $field => $value) { $this->formatField(sprintf(' %s', $field), $this->formatValue($value)); }