1 | <?php |
||
16 | class CompletePurchaseResponseTest extends TestCase |
||
17 | { |
||
18 | private $request; |
||
19 | |||
20 | private $purse = 'ec12345'; |
||
21 | private $secret = '22SAD#-78G8sdf$88'; |
||
22 | private $hash = '1d4d18e1eea386654e1af89e89f1a104'; // d41d8cd98f00b204e9800998ecf8427e 954f1176a05a5921118f49285beea2bb |
||
23 | private $description = 'Test Transaction long description'; |
||
24 | private $transactionId = '1SD672345A890sd'; |
||
25 | private $transactionReference = 'sdfa1SD672345A8'; |
||
26 | private $timestamp = '1454331086'; |
||
|
|||
27 | private $amount = '1465.01'; |
||
28 | private $currency = 'USD'; |
||
29 | private $testMode = true; |
||
30 | |||
31 | public function setUp() |
||
42 | |||
43 | public function testInvalidHashException() |
||
53 | |||
54 | public function testSuccess() |
||
72 | } |
||
73 |
This check marks private properties in classes that are never used. Those properties can be removed.