@@ -7,7 +7,6 @@ |
||
7 | 7 | use Checkdomain\Comodo\Model\Exception\RequestException; |
8 | 8 | use Checkdomain\Comodo\Model\Exception\UnknownApiException; |
9 | 9 | use Checkdomain\Comodo\Model\Exception\UnknownException; |
10 | - |
|
11 | 10 | use Checkdomain\Comodo\Model\Result\AutoApplyResult; |
12 | 11 | use Checkdomain\Comodo\Model\Result\AutoReplaceResult; |
13 | 12 | use Checkdomain\Comodo\Model\Result\CollectSslResult; |
@@ -54,9 +54,9 @@ discard block |
||
54 | 54 | /** |
55 | 55 | * Constructs the Util with a communicationAdapter |
56 | 56 | * |
57 | - * @param CommunicationAdapter|null $communicationAdapter |
|
58 | - * @param ImapAdapter|null $imapAdapter |
|
59 | - * @param ImapHelper|null $imapHelper |
|
57 | + * @param CommunicationAdapter $communicationAdapter |
|
58 | + * @param ImapAdapter $imapAdapter |
|
59 | + * @param ImapHelper $imapHelper |
|
60 | 60 | */ |
61 | 61 | public function __construct(CommunicationAdapter $communicationAdapter, ImapAdapter $imapAdapter, ImapHelper $imapHelper) |
62 | 62 | { |
@@ -218,7 +218,7 @@ discard block |
||
218 | 218 | * |
219 | 219 | * @param array $params |
220 | 220 | * |
221 | - * @return AutoApplyResult |
|
221 | + * @return AutoReplaceResult |
|
222 | 222 | * @throws Model\Exception\AccountException |
223 | 223 | * @throws Model\Exception\ArgumentException |
224 | 224 | * @throws Model\Exception\CSRException |
@@ -496,7 +496,7 @@ discard block |
||
496 | 496 | * |
497 | 497 | * @param array $params |
498 | 498 | * |
499 | - * @return GetMDCDomainDetailsResult |
|
499 | + * @return SslCheckerResult |
|
500 | 500 | * |
501 | 501 | * @throws Model\Exception\AccountException |
502 | 502 | * @throws Model\Exception\ArgumentException |
@@ -733,7 +733,7 @@ discard block |
||
733 | 733 | /** |
734 | 734 | * @param CollectSslResult $object |
735 | 735 | * @param array $arr |
736 | - * @param array $timestampFields |
|
736 | + * @param string[] $timestampFields |
|
737 | 737 | * |
738 | 738 | * @return $this |
739 | 739 | */ |
@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | } |
27 | 27 | |
28 | 28 | /** |
29 | - * @return \PHPUnit_Framework_MockObject_MockObject|\Checkdomain\Comodo\ImapExtension |
|
29 | + * @return ImapExtension |
|
30 | 30 | */ |
31 | 31 | protected function createImapExtension() |
32 | 32 | { |
@@ -98,9 +98,9 @@ discard block |
||
98 | 98 | /** |
99 | 99 | * Creates a class to simulate Requests, and return response String for testing purposes |
100 | 100 | * |
101 | - * @param $responseString |
|
101 | + * @param string $responseString |
|
102 | 102 | * |
103 | - * @return \PHPUnit_Framework_MockObject_MockObject|\GuzzleHttp\Client |
|
103 | + * @return null|Client |
|
104 | 104 | */ |
105 | 105 | protected function createGuzzleClient($responseString) |
106 | 106 | { |
@@ -10,7 +10,6 @@ |
||
10 | 10 | use GuzzleHttp\Client; |
11 | 11 | use Psr\Http\Message\ResponseInterface; |
12 | 12 | use Psr\Http\Message\StreamInterface; |
13 | -use Zend\Mail\Storage\Folder; |
|
14 | 13 | |
15 | 14 | /** |
16 | 15 | * Class AbstractTest |
@@ -354,7 +354,7 @@ discard block |
||
354 | 354 | } |
355 | 355 | |
356 | 356 | /** |
357 | - * @return \DateTime |
|
357 | + * @return string |
|
358 | 358 | */ |
359 | 359 | public function getCertValidityNotBefore() |
360 | 360 | { |
@@ -372,7 +372,7 @@ discard block |
||
372 | 372 | } |
373 | 373 | |
374 | 374 | /** |
375 | - * @return \DateTime |
|
375 | + * @return string |
|
376 | 376 | */ |
377 | 377 | public function getCertValidityNotAfter() |
378 | 378 | { |
@@ -134,7 +134,7 @@ |
||
134 | 134 | } |
135 | 135 | |
136 | 136 | /** |
137 | - * @return int |
|
137 | + * @return string |
|
138 | 138 | */ |
139 | 139 | public function getOrderStatus() |
140 | 140 | { |
@@ -123,7 +123,7 @@ discard block |
||
123 | 123 | |
124 | 124 | /** |
125 | 125 | * @param int $rowNumber |
126 | - * @return WebHostReportEntry |
|
126 | + * @return WebHostReportEntryItem |
|
127 | 127 | */ |
128 | 128 | public function setRowNumber($rowNumber) |
129 | 129 | { |
@@ -141,7 +141,7 @@ discard block |
||
141 | 141 | |
142 | 142 | /** |
143 | 143 | * @param string $type |
144 | - * @return WebHostReportEntry |
|
144 | + * @return WebHostReportEntryItem |
|
145 | 145 | */ |
146 | 146 | public function setType($type) |
147 | 147 | { |
@@ -159,7 +159,7 @@ discard block |
||
159 | 159 | |
160 | 160 | /** |
161 | 161 | * @param string $domain |
162 | - * @return WebHostReportEntry |
|
162 | + * @return WebHostReportEntryItem |
|
163 | 163 | */ |
164 | 164 | public function setDomain($domain) |
165 | 165 | { |
@@ -177,7 +177,7 @@ discard block |
||
177 | 177 | |
178 | 178 | /** |
179 | 179 | * @param string $additionalDomain |
180 | - * @return WebHostReportEntry |
|
180 | + * @return WebHostReportEntryItem |
|
181 | 181 | */ |
182 | 182 | public function setAdditionalDomain($additionalDomain) |
183 | 183 | { |
@@ -195,7 +195,7 @@ discard block |
||
195 | 195 | |
196 | 196 | /** |
197 | 197 | * @param string $mdcDomainNames |
198 | - * @return WebHostReportEntry |
|
198 | + * @return WebHostReportEntryItem |
|
199 | 199 | */ |
200 | 200 | public function setMdcDomainNames($mdcDomainNames) |
201 | 201 | { |
@@ -213,7 +213,7 @@ discard block |
||
213 | 213 | |
214 | 214 | /** |
215 | 215 | * @param string $status |
216 | - * @return WebHostReportEntry |
|
216 | + * @return WebHostReportEntryItem |
|
217 | 217 | */ |
218 | 218 | public function setStatus($status) |
219 | 219 | { |
@@ -231,7 +231,7 @@ discard block |
||
231 | 231 | |
232 | 232 | /** |
233 | 233 | * @param \DateTime $lastStatusChange |
234 | - * @return WebHostReportEntry |
|
234 | + * @return WebHostReportEntryItem |
|
235 | 235 | */ |
236 | 236 | public function setLastStatusChange($lastStatusChange) |
237 | 237 | { |
@@ -253,7 +253,7 @@ discard block |
||
253 | 253 | |
254 | 254 | /** |
255 | 255 | * @param \DateTime $notBefore |
256 | - * @return WebHostReportEntry |
|
256 | + * @return WebHostReportEntryItem |
|
257 | 257 | */ |
258 | 258 | public function setNotBefore($notBefore) |
259 | 259 | { |
@@ -275,7 +275,7 @@ discard block |
||
275 | 275 | |
276 | 276 | /** |
277 | 277 | * @param \DateTime $notAfter |
278 | - * @return WebHostReportEntry |
|
278 | + * @return WebHostReportEntryItem |
|
279 | 279 | */ |
280 | 280 | public function setNotAfter($notAfter) |
281 | 281 | { |
@@ -297,7 +297,7 @@ discard block |
||
297 | 297 | |
298 | 298 | /** |
299 | 299 | * @param string $serialNumber |
300 | - * @return WebHostReportEntry |
|
300 | + * @return WebHostReportEntryItem |
|
301 | 301 | */ |
302 | 302 | public function setSerialNumber($serialNumber) |
303 | 303 | { |
@@ -315,7 +315,7 @@ discard block |
||
315 | 315 | |
316 | 316 | /** |
317 | 317 | * @param string $signatureAlgorithm |
318 | - * @return WebHostReportEntry |
|
318 | + * @return WebHostReportEntryItem |
|
319 | 319 | */ |
320 | 320 | public function setSignatureAlgorithm($signatureAlgorithm) |
321 | 321 | { |
@@ -333,7 +333,7 @@ discard block |
||
333 | 333 | |
334 | 334 | /** |
335 | 335 | * @param string $keySize |
336 | - * @return WebHostReportEntry |
|
336 | + * @return WebHostReportEntryItem |
|
337 | 337 | */ |
338 | 338 | public function setKeySize($keySize) |
339 | 339 | { |
@@ -351,7 +351,7 @@ discard block |
||
351 | 351 | |
352 | 352 | /** |
353 | 353 | * @param string $webServerSoftware |
354 | - * @return WebHostReportEntry |
|
354 | + * @return WebHostReportEntryItem |
|
355 | 355 | */ |
356 | 356 | public function setWebServerSoftware($webServerSoftware) |
357 | 357 | { |
@@ -369,7 +369,7 @@ discard block |
||
369 | 369 | |
370 | 370 | /** |
371 | 371 | * @param string $certificateID |
372 | - * @return WebHostReportEntry |
|
372 | + * @return WebHostReportEntryItem |
|
373 | 373 | */ |
374 | 374 | public function setCertificateID($certificateID) |
375 | 375 | { |
@@ -387,7 +387,7 @@ discard block |
||
387 | 387 | |
388 | 388 | /** |
389 | 389 | * @param string $csrStatus |
390 | - * @return WebHostReportEntry |
|
390 | + * @return WebHostReportEntryItem |
|
391 | 391 | */ |
392 | 392 | public function setCsrStatus($csrStatus) |
393 | 393 | { |
@@ -405,7 +405,7 @@ discard block |
||
405 | 405 | |
406 | 406 | /** |
407 | 407 | * @param string $dcvStatus |
408 | - * @return WebHostReportEntry |
|
408 | + * @return WebHostReportEntryItem |
|
409 | 409 | */ |
410 | 410 | public function setDcvStatus($dcvStatus) |
411 | 411 | { |
@@ -423,7 +423,7 @@ discard block |
||
423 | 423 | |
424 | 424 | /** |
425 | 425 | * @param string $ovCallBackStatus |
426 | - * @return WebHostReportEntry |
|
426 | + * @return WebHostReportEntryItem |
|
427 | 427 | */ |
428 | 428 | public function setOvCallBackStatus($ovCallBackStatus) |
429 | 429 | { |
@@ -441,7 +441,7 @@ discard block |
||
441 | 441 | |
442 | 442 | /** |
443 | 443 | * @param string $organizationValidationStatus |
444 | - * @return WebHostReportEntry |
|
444 | + * @return WebHostReportEntryItem |
|
445 | 445 | */ |
446 | 446 | public function setOrganizationValidationStatus($organizationValidationStatus) |
447 | 447 | { |
@@ -459,7 +459,7 @@ discard block |
||
459 | 459 | |
460 | 460 | /** |
461 | 461 | * @param string $countryName |
462 | - * @return WebHostReportEntry |
|
462 | + * @return WebHostReportEntryItem |
|
463 | 463 | */ |
464 | 464 | public function setCountryName($countryName) |
465 | 465 | { |
@@ -477,7 +477,7 @@ discard block |
||
477 | 477 | |
478 | 478 | /** |
479 | 479 | * @param string $freeDVUPStatus |
480 | - * @return WebHostReportEntry |
|
480 | + * @return WebHostReportEntryItem |
|
481 | 481 | */ |
482 | 482 | public function setFreeDVUPStatus($freeDVUPStatus) |
483 | 483 | { |
@@ -495,7 +495,7 @@ discard block |
||
495 | 495 | |
496 | 496 | /** |
497 | 497 | * @param string $evClickThroughStatus |
498 | - * @return WebHostReportEntry |
|
498 | + * @return WebHostReportEntryItem |
|
499 | 499 | */ |
500 | 500 | public function setEvClickThroughStatus($evClickThroughStatus) |
501 | 501 | { |