Conditions | 3 |
Paths | 3 |
Total Lines | 12 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
17 | public function __construct() |
||
18 | { |
||
19 | $this->type = new Type(Type::OBJECT); |
||
20 | $properties = new Properties(); |
||
21 | $this->properties = $properties; |
||
22 | |||
23 | foreach (func_get_args() as $arg) { |
||
24 | if ($arg instanceof ClassSchema) { |
||
25 | $properties->__set($arg->objectItemClass, $arg->nested()); |
||
26 | } |
||
27 | } |
||
28 | } |
||
29 | |||
30 | } |
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.