File tree Expand file tree Collapse file tree 1 file changed +14
-14
lines changed Expand file tree Collapse file tree 1 file changed +14
-14
lines changed Original file line number Diff line number Diff line change 7
7
8
8
class PaypalRestGatewayFactoryTest extends AbstractGatewayFactoryTest
9
9
{
10
- protected function getGatewayFactoryClass (): string
11
- {
12
- return PaypalRestGatewayFactory::class;
13
- }
14
-
15
- protected function getRequiredOptions (): array
16
- {
17
- return [
18
- 'client_id ' => 'cId ' ,
19
- 'client_secret ' => 'cSecret ' ,
20
- 'config_path ' => __DIR__ ,
21
- ];
22
- }
23
-
24
10
public function testShouldAllowCreateGatewayWithCustomConfig ()
25
11
{
26
12
$ factory = new PaypalRestGatewayFactory ();
@@ -133,4 +119,18 @@ public function testShouldThrowIfConfigPathOptionsNotEqualPaypalPath()
133
119
'config_path ' => dirname (__DIR__ ),
134
120
]);
135
121
}
122
+
123
+ protected function getGatewayFactoryClass (): string
124
+ {
125
+ return PaypalRestGatewayFactory::class;
126
+ }
127
+
128
+ protected function getRequiredOptions (): array
129
+ {
130
+ return [
131
+ 'client_id ' => 'cId ' ,
132
+ 'client_secret ' => 'cSecret ' ,
133
+ 'config_path ' => __DIR__ ,
134
+ ];
135
+ }
136
136
}
You can’t perform that action at this time.
0 commit comments