Total Complexity | 1 |
Total Lines | 27 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
34 | class SellSecurity extends Investment |
||
35 | { |
||
36 | /** |
||
37 | * Traits used to define properties |
||
38 | */ |
||
39 | use InvTran; |
||
|
|||
40 | use SecId; |
||
41 | use Pricing; |
||
42 | |||
43 | /** |
||
44 | * @var string |
||
45 | */ |
||
46 | public $nodeName = 'SELLOTHER'; |
||
47 | |||
48 | /** |
||
49 | * Imports the OFX data for this node. |
||
50 | * @param SimpleXMLElement $node |
||
51 | * @return $this |
||
52 | */ |
||
53 | public function loadOfx(SimpleXMLElement $node) |
||
64 |