File tree Expand file tree Collapse file tree 2 files changed +9
-9
lines changed Expand file tree Collapse file tree 2 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ abstract class Base
27
27
private $ currency = 'BGN ' ;
28
28
29
29
/**
30
- * @var int
30
+ * @var string
31
31
*/
32
32
private $ orderId ;
33
33
@@ -47,7 +47,7 @@ abstract class Base
47
47
private $ sign ;
48
48
49
49
/**
50
- * @var int
50
+ * @var string
51
51
*/
52
52
private $ rrn ;
53
53
@@ -91,12 +91,12 @@ public function getCurrency(): ?string
91
91
return $ this ->currency ;
92
92
}
93
93
94
- public function setOrderId (int $ orderId ): void
94
+ public function setOrderId (string $ orderId ): void
95
95
{
96
96
$ this ->orderId = $ orderId ;
97
97
}
98
98
99
- public function getOrderId (): ?int
99
+ public function getOrderId (): ?string
100
100
{
101
101
return $ this ->orderId ;
102
102
}
@@ -141,12 +141,12 @@ public function getSign(): ?string
141
141
return $ this ->sign ;
142
142
}
143
143
144
- public function setRrn (int $ rrn ): void
144
+ public function setRrn (string $ rrn ): void
145
145
{
146
146
$ this ->rrn = $ rrn ;
147
147
}
148
148
149
- public function getRrn (): ?int
149
+ public function getRrn (): ?string
150
150
{
151
151
return $ this ->rrn ;
152
152
}
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ class Response extends Base
40
40
private $ paresStatus ;
41
41
42
42
/**
43
- * @var int
43
+ * @var string
44
44
*/
45
45
private $ eci ;
46
46
@@ -119,12 +119,12 @@ public function getParesStatus(): ?string
119
119
return $ this ->paresStatus ;
120
120
}
121
121
122
- public function setEci (int $ eci ): void
122
+ public function setEci (string $ eci ): void
123
123
{
124
124
$ this ->eci = $ eci ;
125
125
}
126
126
127
- public function getEci (): ?int
127
+ public function getEci (): ?string
128
128
{
129
129
return $ this ->eci ;
130
130
}
You can’t perform that action at this time.
0 commit comments