Total Complexity | 1 |
Total Lines | 29 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
30 | class Income extends Investment |
||
31 | { |
||
32 | /** |
||
33 | * Traits used to define properties |
||
34 | */ |
||
35 | use IncomeType; |
||
|
|||
36 | use InvTran; |
||
37 | use Pricing; // Not all of these are required for this node |
||
38 | use SecId; |
||
39 | |||
40 | /** |
||
41 | * @var string |
||
42 | */ |
||
43 | public $nodeName = 'INCOME'; |
||
44 | |||
45 | /** |
||
46 | * Imports the OFX data for this node. |
||
47 | * @param SimpleXMLElement $node |
||
48 | * @return $this |
||
49 | */ |
||
50 | public function loadOfx(SimpleXMLElement $node) |
||
61 |