Files
webservice/Lib/Formatter/Text.php
2015-06-02 17:27:22 +02:00

14 lines
234 B
PHP

<?php
namespace BSR\Lib\Formatter;
class Text extends Formatter {
protected static function init() {
self::registerFormats(array('text/plain'));
}
public function render($data) {
print_r($data);
}
}