forked from verdnatura/hedera-web
14 lines
117 B
PHP
14 lines
117 B
PHP
|
<?php
|
||
|
|
||
|
namespace Vn\Rest;
|
||
|
|
||
|
/**
|
||
|
* Diferent formats of encode the reply.
|
||
|
**/
|
||
|
class Encoding
|
||
|
{
|
||
|
const JSON = 1;
|
||
|
}
|
||
|
|
||
|
?>
|