1 | <?php |
||
28 | class Client implements ClientInterface |
||
29 | { |
||
30 | protected $soap; |
||
31 | protected $credentials; |
||
32 | |||
33 | /** |
||
34 | * Constructor |
||
35 | * |
||
36 | * @param object $soap Soap Client |
||
37 | */ |
||
38 | public function __construct(CredentialsInterface $credentials, $soap) |
||
43 | |||
44 | /** |
||
45 | * Gets the utility class for |
||
46 | */ |
||
47 | protected function getUtilityClass() |
||
51 | |||
52 | /** |
||
53 | * Create new registrations from array |
||
54 | * |
||
55 | * @param array $registrations |
||
56 | * |
||
57 | * @return RegistrationsCreateResponse |
||
58 | */ |
||
59 | public function createNewRegistrations(array $registrations) |
||
84 | |||
85 | /** |
||
86 | * Gets new registrations |
||
87 | * |
||
88 | * @return Response |
||
89 | */ |
||
90 | public function getNewRegistrations() |
||
95 | |||
96 | /** |
||
97 | * Gets handled registrations |
||
98 | * |
||
99 | * @return Response |
||
100 | */ |
||
101 | public function getHandledRegistrations() |
||
106 | |||
107 | /** |
||
108 | * Delete registrations |
||
109 | * |
||
110 | * @throws \Exception |
||
111 | * @return void |
||
112 | */ |
||
113 | public function deleteRegistrations() |
||
117 | } |
||
118 |