xref: /dokuwiki/inc/Remote/Response/ApiResponse.php (revision 7288c5bd99308d360af24e785636ed822b0f2737)
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