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