Browse Source

Pretty-printing the output of JsonFormat.

teromene@teromene.fr 8 years ago
parent
commit
26e02ef3b6
1 changed files with 2 additions and 2 deletions
  1. 2 2
      formats/JsonFormat.php

+ 2 - 2
formats/JsonFormat.php

@@ -11,7 +11,7 @@ class JsonFormat extends FormatAbstract{
         // FIXME : sometime content can be null, transform to empty string
         $datas = $this->getDatas();
 
-        return json_encode($datas);
+        return json_encode($datas, JSON_PRETTY_PRINT);
     }
 
     public function display(){
@@ -21,4 +21,4 @@ class JsonFormat extends FormatAbstract{
 
         return parent::display();
     }
-}
+}