Conditions | 1 |
Paths | 1 |
Total Lines | 8 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
73 | protected function init() |
||
74 | { |
||
75 | $this->name = (string)$this->xmlDoc['name']; |
||
76 | $this->supportsRefunds = (string)$this->xmlDoc->SupportsRefunds === 'true'; |
||
77 | $this->supportsRelease = (string)$this->xmlDoc->SupportsRelease === 'true'; |
||
78 | $this->supportsMultipleCaptures = (string)$this->xmlDoc->SupportsMultipleCaptures === 'true'; |
||
79 | $this->supportsMultipleRefunds = (string)$this->xmlDoc->SupportsMultipleRefunds === 'true'; |
||
80 | } |
||
81 | } |
||
82 |