Skip to content

Commit 251f99d

Browse files
authored
4x Fixes to make getter setter functions compatible with ctype_lower checks in symfony serializer component (#410)
1 parent 28b1267 commit 251f99d

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

src/Api/ApigeeX/Entity/BillingType.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ abstract class BillingType extends Entity implements BillingTypeInterface
2828
/**
2929
* {@inheritdoc}
3030
*/
31-
public function getbillingType(): ?string
31+
public function getBillingType(): ?string
3232
{
3333
return $this->billingType;
3434
}
@@ -38,7 +38,7 @@ public function getbillingType(): ?string
3838
*
3939
* @internal
4040
*/
41-
public function setbillingType(?string $billingType): void
41+
public function setBillingType(?string $billingType): void
4242
{
4343
$this->billingType = $billingType;
4444
}

src/Api/ApigeeX/Entity/BillingTypeInterface.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ interface BillingTypeInterface extends EntityInterface
2525
/**
2626
* @return string
2727
*/
28-
public function getbillingType(): ?string;
28+
public function getBillingType(): ?string;
2929

3030
/**
3131
* @param string|null $billingType
3232
*/
33-
public function setbillingType(?string $billingType): void;
33+
public function setBillingType(?string $billingType): void;
3434
}

src/Api/ApigeeX/Entity/PrepaidBalance.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,15 +47,15 @@ public function setBalance(Balance $balance): void
4747
/**
4848
* {@inheritdoc}
4949
*/
50-
public function getlastCreditTime(): ?string
50+
public function getLastCreditTime(): ?string
5151
{
5252
return $this->lastCreditTime;
5353
}
5454

5555
/**
5656
* @param string $lastCreditTime
5757
*/
58-
public function setlastCreditTime(string $lastCreditTime): void
58+
public function setLastCreditTime(string $lastCreditTime): void
5959
{
6060
$this->lastCreditTime = $lastCreditTime;
6161
}

src/Api/ApigeeX/Entity/PrepaidBalanceInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,5 @@ public function getBalance(): Balance;
3636
/**
3737
* @return string
3838
*/
39-
public function getlastCreditTime(): ?string;
39+
public function getLastCreditTime(): ?string;
4040
}

0 commit comments

Comments
 (0)