File tree Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Expand file tree Collapse file tree 4 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ abstract class BillingType extends Entity implements BillingTypeInterface
28
28
/**
29
29
* {@inheritdoc}
30
30
*/
31
- public function getbillingType (): ?string
31
+ public function getBillingType (): ?string
32
32
{
33
33
return $ this ->billingType ;
34
34
}
@@ -38,7 +38,7 @@ public function getbillingType(): ?string
38
38
*
39
39
* @internal
40
40
*/
41
- public function setbillingType (?string $ billingType ): void
41
+ public function setBillingType (?string $ billingType ): void
42
42
{
43
43
$ this ->billingType = $ billingType ;
44
44
}
Original file line number Diff line number Diff line change @@ -25,10 +25,10 @@ interface BillingTypeInterface extends EntityInterface
25
25
/**
26
26
* @return string
27
27
*/
28
- public function getbillingType (): ?string ;
28
+ public function getBillingType (): ?string ;
29
29
30
30
/**
31
31
* @param string|null $billingType
32
32
*/
33
- public function setbillingType (?string $ billingType ): void ;
33
+ public function setBillingType (?string $ billingType ): void ;
34
34
}
Original file line number Diff line number Diff line change @@ -47,15 +47,15 @@ public function setBalance(Balance $balance): void
47
47
/**
48
48
* {@inheritdoc}
49
49
*/
50
- public function getlastCreditTime (): ?string
50
+ public function getLastCreditTime (): ?string
51
51
{
52
52
return $ this ->lastCreditTime ;
53
53
}
54
54
55
55
/**
56
56
* @param string $lastCreditTime
57
57
*/
58
- public function setlastCreditTime (string $ lastCreditTime ): void
58
+ public function setLastCreditTime (string $ lastCreditTime ): void
59
59
{
60
60
$ this ->lastCreditTime = $ lastCreditTime ;
61
61
}
Original file line number Diff line number Diff line change @@ -36,5 +36,5 @@ public function getBalance(): Balance;
36
36
/**
37
37
* @return string
38
38
*/
39
- public function getlastCreditTime (): ?string ;
39
+ public function getLastCreditTime (): ?string ;
40
40
}
You can’t perform that action at this time.
0 commit comments