Skip to content

Commit 918bfff

Browse files
CSharpRUcmlara
andauthored
LeaseTrait::$leaseId and LeaseTrait::getLeaseId() should return a string not int. (#58) (#59)
fixes #57 Co-authored-by: Conrad Lara <cmlara@cmlara.com>
1 parent 4e473ef commit 918bfff

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/ResponseModels/Traits/LeaseTrait.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
trait LeaseTrait
1111
{
1212
/**
13-
* @var int|null
13+
* @var string|null
1414
*/
1515
protected $leaseId;
1616

@@ -25,9 +25,9 @@ trait LeaseTrait
2525
protected $renewable;
2626

2727
/**
28-
* @return int|null
28+
* @return string|null
2929
*/
30-
public function getLeaseId(): ?int
30+
public function getLeaseId(): ?string
3131
{
3232
return $this->leaseId;
3333
}

0 commit comments

Comments
 (0)