Total Complexity | 1 |
Total Lines | 26 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
11 | trait SecId |
||
12 | { |
||
13 | /** |
||
14 | * Identifier for the security being traded. |
||
15 | * @var string |
||
16 | */ |
||
17 | public $securityId; |
||
18 | |||
19 | /** |
||
20 | * The type of identifier for the security being traded. |
||
21 | * @var string |
||
22 | */ |
||
23 | public $securityIdType; |
||
24 | |||
25 | /** |
||
26 | * @param SimpleXMLElement $node |
||
27 | * @return $this for chaining |
||
28 | */ |
||
29 | protected function loadSecId(SimpleXMLElement $node) |
||
39 |