DataHandler.php 270 B

12345678910111213141516
  1. <?php
  2. # app/MicroApi/Services/DataHandler.php
  3. namespace App\MicroApi\Services;
  4. trait DataHandler
  5. {
  6. public function encode($data)
  7. {
  8. return json_encode($data);
  9. }
  10. public function decode($content)
  11. {
  12. return json_decode($content);
  13. }
  14. }