1 | <?php |
||
17 | class EventClientFactory |
||
18 | { |
||
19 | /** |
||
20 | * @param string $apiRootUrl |
||
21 | * |
||
22 | * @return EventClient |
||
23 | * |
||
24 | * @throws EventClientFactoryCreateException |
||
25 | */ |
||
26 | public static function createEventClient($apiRootUrl) |
||
43 | |||
44 | /** |
||
45 | * @return HttpMethodsClient |
||
46 | * |
||
47 | * @throws EventClientFactoryCreateException |
||
48 | */ |
||
49 | protected static function createHttpClient() |
||
62 | |||
63 | /** |
||
64 | * @return RepresentProcessor |
||
65 | */ |
||
66 | protected static function createRepresentProcessor() |
||
70 | |||
71 | /** |
||
72 | * add basic representations for EventClient. |
||
73 | * |
||
74 | * @param RepresentProcessor $representProcessor |
||
75 | */ |
||
76 | protected static function addBasicRepresentations(RepresentProcessor $representProcessor) |
||
80 | } |
||
81 |