Conditions | 3 |
Paths | 3 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
28 | private function parseLinks(\stdClass $links) |
||
29 | { |
||
30 | foreach (get_object_vars($links) as $property => $value) { |
||
31 | if ($property == 'checkout') { // nested links? eg: checkout=>payOnlineBankDebitItau,payCreditCard... |
||
32 | $this->parseLinks($value); |
||
33 | } else { |
||
34 | $this->links[$property] = new Link($property, $value); |
||
35 | } |
||
36 | } |
||
37 | } |
||
38 | |||
62 |
This check marks PHPDoc comments that could not be parsed by our parser. To see which comment annotations we can parse, please refer to our documentation on supported doc-types.