Skip to content

Commit c5cccc5

Browse files
authored
Merge pull request #40 from WilliamDEdwards/fix/return-type
Fix return types
2 parents 73fe4fb + adf339a commit c5cccc5

File tree

2 files changed

+28
-28
lines changed

2 files changed

+28
-28
lines changed

src/Requests/ReissueRequest.php

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -227,9 +227,9 @@ public function getProvince(): string
227227

228228
/**
229229
* @param string $province
230-
* @return CertificateRequest
230+
* @return ReissueRequest
231231
*/
232-
public function setProvince(string $province): CertificateRequest
232+
public function setProvince(string $province): ReissueRequest
233233
{
234234
$this->province = $province;
235235
return $this;
@@ -245,9 +245,9 @@ public function getCountry(): string
245245

246246
/**
247247
* @param string $country
248-
* @return CertificateRequest
248+
* @return ReissueRequest
249249
*/
250-
public function setCountry(string $country): CertificateRequest
250+
public function setCountry(string $country): ReissueRequest
251251
{
252252
$this->country = $country;
253253
return $this;
@@ -343,9 +343,9 @@ public function getApproverRepresentativePosition(): string
343343

344344
/**
345345
* @param string $appRepPosition
346-
* @return CertificateRequest
346+
* @return ReissueRequest
347347
*/
348-
public function setApproverRepresentativePosition(string $appRepPosition): CertificateRequest
348+
public function setApproverRepresentativePosition(string $appRepPosition): ReissueRequest
349349
{
350350
$this->approverRepresentativePosition = $appRepPosition;
351351
return $this;
@@ -361,9 +361,9 @@ public function getApproverRepresentativeFirstName(): string
361361

362362
/**
363363
* @param string $appRepFirstName
364-
* @return CertificateRequest
364+
* @return ReissueRequest
365365
*/
366-
public function setApproverRepresentativeFirstName(string $appRepFirstName): CertificateRequest
366+
public function setApproverRepresentativeFirstName(string $appRepFirstName): ReissueRequest
367367
{
368368
$this->approverRepresentativeFirstName = $appRepFirstName;
369369
return $this;
@@ -379,9 +379,9 @@ public function getApproverRepresentativeLastName(): string
379379

380380
/**
381381
* @param string $appRepLastName
382-
* @return CertificateRequest
382+
* @return ReissueRequest
383383
*/
384-
public function setApproverRepresentativeLastName(string $appRepLastName): CertificateRequest
384+
public function setApproverRepresentativeLastName(string $appRepLastName): ReissueRequest
385385
{
386386
$this->approverRepresentativeLastName = $appRepLastName;
387387
return $this;
@@ -397,9 +397,9 @@ public function getApproverRepresentativeEmail(): string
397397

398398
/**
399399
* @param string $appRepEmail
400-
* @return CertificateRequest
400+
* @return ReissueRequest
401401
*/
402-
public function setApproverRepresentativeEmail(string $appRepEmail): CertificateRequest
402+
public function setApproverRepresentativeEmail(string $appRepEmail): ReissueRequest
403403
{
404404
$this->approverRepresentativeEmail = $appRepEmail;
405405
return $this;
@@ -415,9 +415,9 @@ public function getApproverRepresentativePhone(): string
415415

416416
/**
417417
* @param string $appRepPhone
418-
* @return CertificateRequest
418+
* @return ReissueRequest
419419
*/
420-
public function setApproverRepresentativePhone(string $appRepPhone): CertificateRequest
420+
public function setApproverRepresentativePhone(string $appRepPhone): ReissueRequest
421421
{
422422
$this->approverRepresentativePhone = $appRepPhone;
423423
return $this;

src/Requests/RenewRequest.php

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -237,9 +237,9 @@ public function getProvince(): string
237237

238238
/**
239239
* @param string $province
240-
* @return CertificateRequest
240+
* @return RenewRequest
241241
*/
242-
public function setProvince(string $province): CertificateRequest
242+
public function setProvince(string $province): RenewRequest
243243
{
244244
$this->province = $province;
245245
return $this;
@@ -255,9 +255,9 @@ public function getCountry(): string
255255

256256
/**
257257
* @param string $country
258-
* @return CertificateRequest
258+
* @return RenewRequest
259259
*/
260-
public function setCountry(string $country): CertificateRequest
260+
public function setCountry(string $country): RenewRequest
261261
{
262262
$this->country = $country;
263263
return $this;
@@ -353,9 +353,9 @@ public function getApproverRepresentativePosition(): string
353353

354354
/**
355355
* @param string $appRepPosition
356-
* @return CertificateRequest
356+
* @return RenewRequest
357357
*/
358-
public function setApproverRepresentativePosition(string $appRepPosition): CertificateRequest
358+
public function setApproverRepresentativePosition(string $appRepPosition): RenewRequest
359359
{
360360
$this->approverRepresentativePosition = $appRepPosition;
361361
return $this;
@@ -371,9 +371,9 @@ public function getApproverRepresentativeFirstName(): string
371371

372372
/**
373373
* @param string $appRepFirstName
374-
* @return CertificateRequest
374+
* @return RenewRequest
375375
*/
376-
public function setApproverRepresentativeFirstName(string $appRepFirstName): CertificateRequest
376+
public function setApproverRepresentativeFirstName(string $appRepFirstName): RenewRequest
377377
{
378378
$this->approverRepresentativeFirstName = $appRepFirstName;
379379
return $this;
@@ -389,9 +389,9 @@ public function getApproverRepresentativeLastName(): string
389389

390390
/**
391391
* @param string $appRepLastName
392-
* @return CertificateRequest
392+
* @return RenewRequest
393393
*/
394-
public function setApproverRepresentativeLastName(string $appRepLastName): CertificateRequest
394+
public function setApproverRepresentativeLastName(string $appRepLastName): RenewRequest
395395
{
396396
$this->approverRepresentativeLastName = $appRepLastName;
397397
return $this;
@@ -407,9 +407,9 @@ public function getApproverRepresentativeEmail(): string
407407

408408
/**
409409
* @param string $appRepEmail
410-
* @return CertificateRequest
410+
* @return RenewRequest
411411
*/
412-
public function setApproverRepresentativeEmail(string $appRepEmail): CertificateRequest
412+
public function setApproverRepresentativeEmail(string $appRepEmail): RenewRequest
413413
{
414414
$this->approverRepresentativeEmail = $appRepEmail;
415415
return $this;
@@ -425,9 +425,9 @@ public function getApproverRepresentativePhone(): string
425425

426426
/**
427427
* @param string $appRepPhone
428-
* @return CertificateRequest
428+
* @return RenewRequest
429429
*/
430-
public function setApproverRepresentativePhone(string $appRepPhone): CertificateRequest
430+
public function setApproverRepresentativePhone(string $appRepPhone): RenewRequest
431431
{
432432
$this->approverRepresentativePhone = $appRepPhone;
433433
return $this;

0 commit comments

Comments
 (0)