You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

22 lines
473 B

  1. <?php
  2. namespace dokuwiki\Remote\Response;
  3. /**
  4. * These are simple data objects that hold the response data API calls
  5. *
  6. * They are transmitted as associative arrays automatically created by
  7. * converting the object to an array using all public properties.
  8. */
  9. abstract class ApiResponse
  10. {
  11. /**
  12. * A string representation of this object
  13. *
  14. * Used for sorting and debugging
  15. *
  16. * @return string
  17. */
  18. abstract public function __toString();
  19. }