Total Complexity | 1 |
Total Lines | 23 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
15 | class SellStock extends SellSecurity |
||
16 | { |
||
17 | /** |
||
18 | * Traits used to define properties |
||
19 | */ |
||
20 | use SellType; |
||
|
|||
21 | |||
22 | /** |
||
23 | * @var string |
||
24 | */ |
||
25 | public $nodeName = 'SELLSTOCK'; |
||
26 | |||
27 | /** |
||
28 | * Imports the OFX data for this node. |
||
29 | * @param SimpleXMLElement $node |
||
30 | * @return $this |
||
31 | */ |
||
32 | public function loadOfx(SimpleXMLElement $node) |
||
41 |