Merge pull request #218 from teromene/master

Pretty-printing the output of JsonFormat.
This commit is contained in:
Mitsu 2016-02-21 01:13:20 +01:00
commit 2a621f1506

View file

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